|
@@ -2,13 +2,17 @@ package org.jeecg.modules.splt.entity;
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
+import org.jeecg.modules.spapl.entity.SizeTable;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
@@ -21,72 +25,72 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
@Data
|
|
@Data
|
|
|
@TableName("sy_packing_list_tailoring_item")
|
|
@TableName("sy_packing_list_tailoring_item")
|
|
|
@ApiModel(value="sy_packing_list_tailoring对象", description="装箱单主表")
|
|
@ApiModel(value="sy_packing_list_tailoring对象", description="装箱单主表")
|
|
|
-public class syPackingListTailoringItem implements Serializable {
|
|
|
|
|
|
|
+public class SyPackingListTailoringItem implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**主键*/
|
|
/**主键*/
|
|
|
@TableId(type = IdType.ASSIGN_ID)
|
|
@TableId(type = IdType.ASSIGN_ID)
|
|
|
@ApiModelProperty(value = "主键")
|
|
@ApiModelProperty(value = "主键")
|
|
|
- private java.lang.String id;
|
|
|
|
|
|
|
+ private String id;
|
|
|
/**装箱单主表id*/
|
|
/**装箱单主表id*/
|
|
|
@ApiModelProperty(value = "装箱单主表id")
|
|
@ApiModelProperty(value = "装箱单主表id")
|
|
|
- private java.lang.String syPackingListTailoringId;
|
|
|
|
|
|
|
+ private String syPackingListTailoringId;
|
|
|
/**预装箱单主表id*/
|
|
/**预装箱单主表id*/
|
|
|
@Excel(name = "预装箱单主表id", width = 15)
|
|
@Excel(name = "预装箱单主表id", width = 15)
|
|
|
@ApiModelProperty(value = "预装箱单主表id")
|
|
@ApiModelProperty(value = "预装箱单主表id")
|
|
|
- private java.lang.String syPreAssembledPackingListId;
|
|
|
|
|
|
|
+ private String syPreAssembledPackingListId;
|
|
|
/**预装箱单子表id*/
|
|
/**预装箱单子表id*/
|
|
|
@Excel(name = "预装箱单子表id", width = 15)
|
|
@Excel(name = "预装箱单子表id", width = 15)
|
|
|
@ApiModelProperty(value = "预装箱单子表id")
|
|
@ApiModelProperty(value = "预装箱单子表id")
|
|
|
- private java.lang.String syPreAssembledPackingListItemId;
|
|
|
|
|
|
|
+ private String syPreAssembledPackingListItemId;
|
|
|
/**帐套*/
|
|
/**帐套*/
|
|
|
@Excel(name = "帐套", width = 15)
|
|
@Excel(name = "帐套", width = 15)
|
|
|
@ApiModelProperty(value = "帐套")
|
|
@ApiModelProperty(value = "帐套")
|
|
|
- private java.lang.String acSetNo;
|
|
|
|
|
|
|
+ private String acSetNo;
|
|
|
/**成衣工厂*/
|
|
/**成衣工厂*/
|
|
|
@Excel(name = "成衣工厂", width = 15)
|
|
@Excel(name = "成衣工厂", width = 15)
|
|
|
@ApiModelProperty(value = "成衣工厂")
|
|
@ApiModelProperty(value = "成衣工厂")
|
|
|
- private java.lang.String garmentFactory;
|
|
|
|
|
|
|
+ private String garmentFactory;
|
|
|
/**HOD*/
|
|
/**HOD*/
|
|
|
@Excel(name = "HOD", width = 15)
|
|
@Excel(name = "HOD", width = 15)
|
|
|
@ApiModelProperty(value = "HOD")
|
|
@ApiModelProperty(value = "HOD")
|
|
|
- private java.lang.String hod;
|
|
|
|
|
|
|
+ private String hod;
|
|
|
/**STYLE NO*/
|
|
/**STYLE NO*/
|
|
|
@Excel(name = "STYLE NO", width = 15)
|
|
@Excel(name = "STYLE NO", width = 15)
|
|
|
@ApiModelProperty(value = "STYLE NO")
|
|
@ApiModelProperty(value = "STYLE NO")
|
|
|
- private java.lang.String styleNo;
|
|
|
|
|
|
|
+ private String styleNo;
|
|
|
/**PO NO.*/
|
|
/**PO NO.*/
|
|
|
@Excel(name = "PO NO.", width = 15)
|
|
@Excel(name = "PO NO.", width = 15)
|
|
|
@ApiModelProperty(value = "PO NO.")
|
|
@ApiModelProperty(value = "PO NO.")
|
|
|
- private java.lang.String poNo;
|
|
|
|
|
|
|
+ private String poNo;
|
|
|
/**ITEM NO./SKU NO./UPC NO./PACKSCODE*/
|
|
/**ITEM NO./SKU NO./UPC NO./PACKSCODE*/
|
|
|
@Excel(name = "ITEM NO./SKU NO./UPC NO./PACKSCODE", width = 15)
|
|
@Excel(name = "ITEM NO./SKU NO./UPC NO./PACKSCODE", width = 15)
|
|
|
@ApiModelProperty(value = "ITEM NO./SKU NO./UPC NO./PACKSCODE")
|
|
@ApiModelProperty(value = "ITEM NO./SKU NO./UPC NO./PACKSCODE")
|
|
|
- private java.lang.String itemCode;
|
|
|
|
|
|
|
+ private String itemCode;
|
|
|
/**分销点/DC/LABEL*/
|
|
/**分销点/DC/LABEL*/
|
|
|
@Excel(name = "分销点/DC/LABEL", width = 15)
|
|
@Excel(name = "分销点/DC/LABEL", width = 15)
|
|
|
@ApiModelProperty(value = "分销点/DC/LABEL")
|
|
@ApiModelProperty(value = "分销点/DC/LABEL")
|
|
|
- private java.lang.String distributionPoint;
|
|
|
|
|
|
|
+ private String distributionPoint;
|
|
|
/**PREPACK SKU*/
|
|
/**PREPACK SKU*/
|
|
|
@Excel(name = "PREPACK SKU", width = 15)
|
|
@Excel(name = "PREPACK SKU", width = 15)
|
|
|
@ApiModelProperty(value = "PREPACK SKU")
|
|
@ApiModelProperty(value = "PREPACK SKU")
|
|
|
- private java.lang.String prepackSku;
|
|
|
|
|
|
|
+ private String prepackSku;
|
|
|
/**尺码*/
|
|
/**尺码*/
|
|
|
@Excel(name = "尺码", width = 15)
|
|
@Excel(name = "尺码", width = 15)
|
|
|
@ApiModelProperty(value = "尺码")
|
|
@ApiModelProperty(value = "尺码")
|
|
|
- private java.lang.String size;
|
|
|
|
|
|
|
+ private String size;
|
|
|
/**启始箱号*/
|
|
/**启始箱号*/
|
|
|
@Excel(name = "启始箱号", width = 15)
|
|
@Excel(name = "启始箱号", width = 15)
|
|
|
@ApiModelProperty(value = "启始箱号")
|
|
@ApiModelProperty(value = "启始箱号")
|
|
|
- private java.lang.String startingBoxNumber;
|
|
|
|
|
|
|
+ private String startingBoxNumber;
|
|
|
/**结束箱号*/
|
|
/**结束箱号*/
|
|
|
@Excel(name = "结束箱号", width = 15)
|
|
@Excel(name = "结束箱号", width = 15)
|
|
|
@ApiModelProperty(value = "结束箱号")
|
|
@ApiModelProperty(value = "结束箱号")
|
|
|
- private java.lang.String endCaseNumber;
|
|
|
|
|
|
|
+ private String endCaseNumber;
|
|
|
/**颜色(中英文)*/
|
|
/**颜色(中英文)*/
|
|
|
@Excel(name = "颜色(中英文)", width = 15)
|
|
@Excel(name = "颜色(中英文)", width = 15)
|
|
|
@ApiModelProperty(value = "颜色(中英文)")
|
|
@ApiModelProperty(value = "颜色(中英文)")
|
|
|
- private java.lang.String colour;
|
|
|
|
|
|
|
+ private String colour;
|
|
|
/**件数/箱*/
|
|
/**件数/箱*/
|
|
|
@Excel(name = "件数/箱", width = 15)
|
|
@Excel(name = "件数/箱", width = 15)
|
|
|
@ApiModelProperty(value = "件数/箱")
|
|
@ApiModelProperty(value = "件数/箱")
|
|
@@ -96,7 +100,7 @@ public class syPackingListTailoringItem implements Serializable {
|
|
|
@ApiModelProperty(value = "箱数")
|
|
@ApiModelProperty(value = "箱数")
|
|
|
private java.math.BigDecimal boxNumber;
|
|
private java.math.BigDecimal boxNumber;
|
|
|
/**总件数*/
|
|
/**总件数*/
|
|
|
- @Excel(name = "总件数", width = 15)
|
|
|
|
|
|
|
+ @Excel(name = "总件数", width = 15)
|
|
|
@ApiModelProperty(value = "总件数")
|
|
@ApiModelProperty(value = "总件数")
|
|
|
private java.math.BigDecimal total;
|
|
private java.math.BigDecimal total;
|
|
|
/**净重/箱*/
|
|
/**净重/箱*/
|
|
@@ -146,49 +150,54 @@ public class syPackingListTailoringItem implements Serializable {
|
|
|
/**备注*/
|
|
/**备注*/
|
|
|
@Excel(name = "备注", width = 15)
|
|
@Excel(name = "备注", width = 15)
|
|
|
@ApiModelProperty(value = "备注")
|
|
@ApiModelProperty(value = "备注")
|
|
|
- private java.lang.Object remarks;
|
|
|
|
|
|
|
+ private Object remarks;
|
|
|
/**创建人*/
|
|
/**创建人*/
|
|
|
@Excel(name = "创建人", width = 15)
|
|
@Excel(name = "创建人", width = 15)
|
|
|
@ApiModelProperty(value = "创建人")
|
|
@ApiModelProperty(value = "创建人")
|
|
|
- private java.lang.String createBy;
|
|
|
|
|
|
|
+ private String createBy;
|
|
|
/**创建日期*/
|
|
/**创建日期*/
|
|
|
@Excel(name = "创建日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
@Excel(name = "创建日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "创建日期")
|
|
@ApiModelProperty(value = "创建日期")
|
|
|
- private java.util.Date createTime;
|
|
|
|
|
|
|
+ private Date createTime;
|
|
|
/**修改人*/
|
|
/**修改人*/
|
|
|
@Excel(name = "修改人", width = 15)
|
|
@Excel(name = "修改人", width = 15)
|
|
|
@ApiModelProperty(value = "修改人")
|
|
@ApiModelProperty(value = "修改人")
|
|
|
- private java.lang.String updateBy;
|
|
|
|
|
|
|
+ private String updateBy;
|
|
|
/**修改日期*/
|
|
/**修改日期*/
|
|
|
@Excel(name = "修改日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
@Excel(name = "修改日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "修改日期")
|
|
@ApiModelProperty(value = "修改日期")
|
|
|
- private java.util.Date updateTime;
|
|
|
|
|
|
|
+ private Date updateTime;
|
|
|
/**组织*/
|
|
/**组织*/
|
|
|
@Excel(name = "组织", width = 15)
|
|
@Excel(name = "组织", width = 15)
|
|
|
@ApiModelProperty(value = "组织")
|
|
@ApiModelProperty(value = "组织")
|
|
|
- private java.lang.String pkOrg;
|
|
|
|
|
|
|
+ private String pkOrg;
|
|
|
/**删除状态*/
|
|
/**删除状态*/
|
|
|
@Excel(name = "删除状态", width = 15)
|
|
@Excel(name = "删除状态", width = 15)
|
|
|
@ApiModelProperty(value = "删除状态")
|
|
@ApiModelProperty(value = "删除状态")
|
|
|
- private java.lang.String delFlag;
|
|
|
|
|
|
|
+ private String delFlag;
|
|
|
/**备注*/
|
|
/**备注*/
|
|
|
@Excel(name = "备注", width = 15)
|
|
@Excel(name = "备注", width = 15)
|
|
|
@ApiModelProperty(value = "备注")
|
|
@ApiModelProperty(value = "备注")
|
|
|
- private java.lang.Object memo;
|
|
|
|
|
|
|
+ private Object memo;
|
|
|
/**排序*/
|
|
/**排序*/
|
|
|
@Excel(name = "排序", width = 15)
|
|
@Excel(name = "排序", width = 15)
|
|
|
@ApiModelProperty(value = "排序")
|
|
@ApiModelProperty(value = "排序")
|
|
|
- private java.lang.Integer sort;
|
|
|
|
|
|
|
+ private Integer sort;
|
|
|
/**配码*/
|
|
/**配码*/
|
|
|
@Excel(name = "配码", width = 15)
|
|
@Excel(name = "配码", width = 15)
|
|
|
@ApiModelProperty(value = "配码")
|
|
@ApiModelProperty(value = "配码")
|
|
|
- private java.lang.String withCode;
|
|
|
|
|
|
|
+ private String withCode;
|
|
|
/**存货名称*/
|
|
/**存货名称*/
|
|
|
@Excel(name = "存货名称", width = 15)
|
|
@Excel(name = "存货名称", width = 15)
|
|
|
@ApiModelProperty(value = "存货名称")
|
|
@ApiModelProperty(value = "存货名称")
|
|
|
- private java.lang.String inventoryName;
|
|
|
|
|
|
|
+ private String inventoryName;
|
|
|
|
|
+ /**二维表格*/
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
|
+ @ApiModelProperty(value = "二维表格")
|
|
|
|
|
+ private List<SizeTable> sizeTables;
|
|
|
|
|
+
|
|
|
}
|
|
}
|