package com.zy.asrs.entity; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.enums.IdType; import com.core.common.Cools; import com.baomidou.mybatisplus.annotations.TableField; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import com.baomidou.mybatisplus.annotations.TableName; import java.io.Serializable; @Data @TableName("asr_loc_detl_rull_up_detail") public class LocDetlRullUpDetail implements Serializable { private static final long serialVersionUID = 1L; /** * ID */ @ApiModelProperty(value= "ID") @TableId(value = "id", type = IdType.AUTO) private Long id; /** * 编号 */ @ApiModelProperty(value= "编号") private Long uuid; /** * 卷号 */ @ApiModelProperty(value= "卷号") @TableField("roll_no") private String rollNo; /** * 重量 */ @ApiModelProperty(value= "重量") @TableField("roll_weight") private String rollWeight; /** * 长度 */ @ApiModelProperty(value= "长度") @TableField("roll_length") private String rollLength; /** * 宽度 */ @ApiModelProperty(value= "宽度") @TableField("roll_width") private String rollWidth; /** * 厚度 */ @ApiModelProperty(value= "厚度") @TableField("roll_thickness") private String rollThickness; /** * 卷状态 */ @ApiModelProperty(value= "卷状态") @TableField("roll_status") private Integer rollStatus; /** * 包装号 */ @ApiModelProperty(value= "包装号") @TableField("roll_papeage_no") private Integer rollPapeageNo; /** * 车号 */ @ApiModelProperty(value= "车号") @TableField("roll_car_no") private Integer rollCarNo; /** * 金额 */ @ApiModelProperty(value= "金额") @TableField("roll_amount") private String rollAmount; /** * 客户Id */ @ApiModelProperty(value= "客户Id") @TableField("roll_custom_id") private Integer rollCustomId; /** * 厂区 */ @ApiModelProperty(value= "厂区") @TableField("roll_factory") private Integer rollFactory; /** * 备用1 */ @ApiModelProperty(value= "备用1") private String standby1; /** * 备用2 */ @ApiModelProperty(value= "备用2") private String standby2; /** * 备用3 */ @ApiModelProperty(value= "备用3") private String standby3; /** * 备用4 */ @ApiModelProperty(value= "备用4") private String standby4; /** * 备用5 */ @ApiModelProperty(value= "备用5") private String standby5; /** * 备用6 */ @ApiModelProperty(value= "备用6") private String standby6; /** * 备用7 */ @ApiModelProperty(value= "备用7") private String standby7; /** * 备用8 */ @ApiModelProperty(value= "备用8") private String standby8; public LocDetlRullUpDetail() {} public LocDetlRullUpDetail(Long uuid,String rollNo,String rollWeight,String rollLength,String rollWidth,String rollThickness,Integer rollStatus,Integer rollPapeageNo,Integer rollCarNo,String rollAmount,Integer rollCustomId,Integer rollFactory,String standby1,String standby2,String standby3,String standby4,String standby5,String standby6,String standby7,String standby8) { this.uuid = uuid; this.rollNo = rollNo; this.rollWeight = rollWeight; this.rollLength = rollLength; this.rollWidth = rollWidth; this.rollThickness = rollThickness; this.rollStatus = rollStatus; this.rollPapeageNo = rollPapeageNo; this.rollCarNo = rollCarNo; this.rollAmount = rollAmount; this.rollCustomId = rollCustomId; this.rollFactory = rollFactory; this.standby1 = standby1; this.standby2 = standby2; this.standby3 = standby3; this.standby4 = standby4; this.standby5 = standby5; this.standby6 = standby6; this.standby7 = standby7; this.standby8 = standby8; } }