|
@@ -1,9 +1,13 @@
|
|
|
package org.jeecg.modules.splt.vo;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
+import org.jeecg.modules.spapl.entity.SizeTable;
|
|
|
import org.jeecg.modules.splt.entity.SyPackingListTailoringItem;
|
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
|
@@ -21,137 +25,79 @@ import java.util.List;
|
|
|
@Data
|
|
|
@ApiModel(value="sy_packing_list_tailoringPage对象", description="装箱单主表")
|
|
|
public class SyPackingListTailoringVo {
|
|
|
-
|
|
|
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
private String id;
|
|
|
-
|
|
|
- @Excel(name = "预装箱单主表id", width = 15)
|
|
|
- private String syPreAssembledPackingListId;
|
|
|
-
|
|
|
- @Excel(name = "创建人", width = 15)
|
|
|
- private String createBy;
|
|
|
-
|
|
|
- @Excel(name = "创建日期", width = 20, format = "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")
|
|
|
- private Date createTime;
|
|
|
-
|
|
|
- @Excel(name = "修改人", width = 15)
|
|
|
- private String updateBy;
|
|
|
-
|
|
|
- @Excel(name = "修改日期", width = 20, format = "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")
|
|
|
- private Date updateTime;
|
|
|
-
|
|
|
- @Excel(name = "组织", width = 15)
|
|
|
- private String pkOrg;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "单据号")
|
|
|
+ private String documentNo;
|
|
|
|
|
|
- @Excel(name = "删除状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "删除状态")
|
|
|
private String delFlag;
|
|
|
|
|
|
- @Excel(name = "订单号", width = 15)
|
|
|
+ @ApiModelProperty(value = "订单号")
|
|
|
private String orderNumber;
|
|
|
|
|
|
- @Excel(name = "款号", width = 15)
|
|
|
+ @ApiModelProperty(value = "款号")
|
|
|
private String itemNumber;
|
|
|
|
|
|
- @Excel(name = "品名", width = 15)
|
|
|
+ @ApiModelProperty(value = "品名")
|
|
|
private String productName;
|
|
|
|
|
|
- @Excel(name = "尺码范围", width = 15)
|
|
|
+ @ApiModelProperty(value = "尺码范围")
|
|
|
private String sizeRange;
|
|
|
-
|
|
|
- @Excel(name = "客户", width = 15)
|
|
|
- private String customer;
|
|
|
|
|
|
- @Excel(name = "客户简称", width = 15)
|
|
|
+ @ApiModelProperty(value = "客户简称")
|
|
|
private String customerAbbreviation;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "总箱数")
|
|
|
+ private java.math.BigDecimal totalBoxes;
|
|
|
|
|
|
- @Excel(name = "集装箱代号", width = 15)
|
|
|
+ @ApiModelProperty(value = "集装箱代号")
|
|
|
private String containerCode;
|
|
|
|
|
|
- @Excel(name = "集装箱号", width = 15)
|
|
|
+ @ApiModelProperty(value = "集装箱号")
|
|
|
private String containerNumber;
|
|
|
|
|
|
- @Excel(name = "备注", width = 15)
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
private Object memo;
|
|
|
|
|
|
- @Excel(name = "成衣工厂", width = 15)
|
|
|
+ @ApiModelProperty(value = "成衣工厂")
|
|
|
private String garmentFactory;
|
|
|
|
|
|
- @Excel(name = "外销发票号", width = 15)
|
|
|
+ @ApiModelProperty(value = "外销发票号")
|
|
|
private String exportInvoiceNo;
|
|
|
-
|
|
|
- @Excel(name = "u8备注", width = 15)
|
|
|
- private Object u8Remarks;
|
|
|
|
|
|
- @Excel(name = "托书号", width = 15)
|
|
|
- private String syXxxId;
|
|
|
+ @ApiModelProperty(value = "托书号")
|
|
|
+ private String shippingOrderNumber;
|
|
|
|
|
|
- @Excel(name = "预托书号", width = 15)
|
|
|
- private String syXxxxId;
|
|
|
-
|
|
|
- @Excel(name = "预发货日期", width = 20, format = "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")
|
|
|
- private Date preDeliveryDate;
|
|
|
-
|
|
|
- @Excel(name = "小PO", width = 15)
|
|
|
- private String smailPo;
|
|
|
-
|
|
|
- @Excel(name = "分销点", width = 15)
|
|
|
- private String theDistribution;
|
|
|
-
|
|
|
- @Excel(name = "存货名称", width = 15)
|
|
|
- private String nameOfTheInventory;
|
|
|
-
|
|
|
- @Excel(name = "颜色", width = 15)
|
|
|
- private String color;
|
|
|
+ @ApiModelProperty(value = "预托书号")
|
|
|
+ private String depositaryReceiptNo;
|
|
|
|
|
|
- @Excel(name = "采购/委外订单号", width = 15)
|
|
|
+ @ApiModelProperty(value = "采购/委外订单号")
|
|
|
private String purchase;
|
|
|
|
|
|
- @Excel(name = "订单类型", width = 15)
|
|
|
+ @ApiModelProperty(value = "订单类型")
|
|
|
private String orderType;
|
|
|
|
|
|
- @Excel(name = "工厂单价", width = 15)
|
|
|
+ @ApiModelProperty(value = "工厂单价")
|
|
|
private java.math.BigDecimal theFactoryPrice;
|
|
|
-
|
|
|
- @Excel(name = "数量(按合并规则累计)", width = 15)
|
|
|
- private java.math.BigDecimal number;
|
|
|
-
|
|
|
- @Excel(name = "箱数", width = 15)
|
|
|
- private java.math.BigDecimal totalBoxes;
|
|
|
-
|
|
|
- @Excel(name = "总净重", width = 15)
|
|
|
- private java.math.BigDecimal totalNetWeight;
|
|
|
-
|
|
|
- @Excel(name = "总毛重", width = 15)
|
|
|
- private java.math.BigDecimal totalGrossWeight;
|
|
|
-
|
|
|
- @Excel(name = "总体积", width = 15)
|
|
|
- private java.math.BigDecimal totalVolume;
|
|
|
|
|
|
- @Excel(name = "推送状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "推送状态")
|
|
|
private String pushState;
|
|
|
|
|
|
- @Excel(name = "单据状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "单据状态")
|
|
|
private String theDocumentsState;
|
|
|
|
|
|
- @Excel(name = "原因", width = 15)
|
|
|
+ @ApiModelProperty(value = "原因")
|
|
|
private String cause;
|
|
|
|
|
|
- @Excel(name = "是否云工厂推送", width = 15)
|
|
|
+ @ApiModelProperty(value = "是否云工厂推送")
|
|
|
private String whetherCloudFactoryPush;
|
|
|
-
|
|
|
- @Excel(name = "状态", width = 15)
|
|
|
- private String state;
|
|
|
|
|
|
- @Excel(name = "附件", width = 15)
|
|
|
+ @ApiModelProperty(value = "附件")
|
|
|
private String accessory;
|
|
|
-
|
|
|
-
|
|
|
|
|
|
@Excel(name = "帐套", width = 15)
|
|
|
@ApiModelProperty(value = "帐套")
|
|
@@ -160,29 +106,49 @@ public class SyPackingListTailoringVo {
|
|
|
@Excel(name = "HOD", width = 15)
|
|
|
@ApiModelProperty(value = "HOD")
|
|
|
private String hod;
|
|
|
-
|
|
|
- @Excel(name = "STYLE NO", width = 15)
|
|
|
- @ApiModelProperty(value = "STYLE NO")
|
|
|
- private String styleNo;
|
|
|
-
|
|
|
- @Excel(name = "PO NO.", width = 15)
|
|
|
- @ApiModelProperty(value = "PO NO.")
|
|
|
- private String poNo;
|
|
|
-
|
|
|
- @Excel(name = "ITEM NO./SKU NO./UPC NO./PACKSCODE", width = 15)
|
|
|
- @ApiModelProperty(value = "ITEM NO./SKU NO./UPC NO./PACKSCODE")
|
|
|
- private String itemCode;
|
|
|
+
|
|
|
+ @Excel(name = "小PO", width = 15)
|
|
|
+ @ApiModelProperty(value = "小PO")
|
|
|
+ private String smallPo;
|
|
|
|
|
|
@Excel(name = "分销点/DC/LABEL", width = 15)
|
|
|
@ApiModelProperty(value = "分销点/DC/LABEL")
|
|
|
private String distributionPoint;
|
|
|
-
|
|
|
- @Excel(name = "PREPACK SKU", width = 15)
|
|
|
- @ApiModelProperty(value = "PREPACK SKU")
|
|
|
- private String prepackSku;
|
|
|
-
|
|
|
- @Excel(name = "total", width = 15)
|
|
|
- @ApiModelProperty(value = "total")
|
|
|
- private String total;
|
|
|
-
|
|
|
+
|
|
|
+ @Excel(name = "颜色(中英文)", width = 15)
|
|
|
+ @ApiModelProperty(value = "颜色(中英文)")
|
|
|
+ private String colour;
|
|
|
+
|
|
|
+ @Excel(name = "总件数", width = 15)
|
|
|
+ @ApiModelProperty(value = "总件数")
|
|
|
+ private java.math.BigDecimal total;
|
|
|
+
|
|
|
+ @Excel(name = "总净重", width = 15)
|
|
|
+ @ApiModelProperty(value = "总净重")
|
|
|
+ private java.math.BigDecimal totalNetWeight;
|
|
|
+
|
|
|
+ @Excel(name = "总毛重", width = 15)
|
|
|
+ @ApiModelProperty(value = "总毛重")
|
|
|
+ private java.math.BigDecimal totalGrossWeight;
|
|
|
+
|
|
|
+ @Excel(name = "总体积", width = 15)
|
|
|
+ @ApiModelProperty(value = "总体积")
|
|
|
+ private java.math.BigDecimal totalVolume;
|
|
|
+
|
|
|
+ @Excel(name = "总价", width = 15)
|
|
|
+ @ApiModelProperty(value = "总价")
|
|
|
+ private java.math.BigDecimal totalPrice;
|
|
|
+
|
|
|
+ @Excel(name = "存货名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "存货名称")
|
|
|
+ private String inventoryName;
|
|
|
+
|
|
|
+ @Excel(name = "计量单位", width = 20)
|
|
|
+ @ApiModelProperty(value = "计量单位")
|
|
|
+ private String masterMetering;
|
|
|
+
|
|
|
+ @Excel(name = "工厂单价", width = 20)
|
|
|
+ @ApiModelProperty(value = "工厂单价")
|
|
|
+ private java.math.BigDecimal factoryUnitPrice;
|
|
|
+
|
|
|
}
|