|
@@ -0,0 +1,99 @@
|
|
|
+package org.jeecg.modules.spapl.vo;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import org.apache.poi.hpsf.Decimal;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class PackingLineVo {
|
|
|
+ @ApiModelProperty("租户ID")
|
|
|
+ private java.lang.Long tenantId;//租户ID
|
|
|
+ /* @ApiModelProperty("装箱单行id")
|
|
|
+ private String packingLineId;//装箱单行id,全局唯一*/
|
|
|
+ /*@ApiModelProperty("装箱单头 ID")
|
|
|
+ private String packingHeaderId;//装箱单头 ID*/
|
|
|
+ @ApiModelProperty("行号")
|
|
|
+ private String packingLineNum;//行号(序号)
|
|
|
+ @ApiModelProperty("PO号")
|
|
|
+ private String poNo;//PO号
|
|
|
+ @ApiModelProperty("PO ID")
|
|
|
+ private String poId;//PO ID
|
|
|
+ @ApiModelProperty("供应商编码")
|
|
|
+ private String supplierNumber;//供应商编码
|
|
|
+ @ApiModelProperty("供应商ID")
|
|
|
+ private String supplierId;//供应商ID
|
|
|
+ @ApiModelProperty("供应商租户ID")
|
|
|
+ private String supplierTenantId;//供应商租户ID
|
|
|
+ @ApiModelProperty("款号")
|
|
|
+ private String styleNo;//款号
|
|
|
+ @ApiModelProperty("ITEM NO./SKU NO./UPC NO./PACKS CODE")
|
|
|
+ private String featureCode1;//ITEM NO./SKU NO./UPC NO./PACKS CODE
|
|
|
+ @ApiModelProperty("PREPACK_SKU")
|
|
|
+ private String prepackSku;//PREPACK_SKU
|
|
|
+ @ApiModelProperty("颜色(中英文)")
|
|
|
+ private String color;//颜色(中英文)
|
|
|
+ @ApiModelProperty("物料id")
|
|
|
+ private String itemId;//物料id
|
|
|
+ @ApiModelProperty("物料CODE")
|
|
|
+ private String itemCode;//物料CODE
|
|
|
+ @ApiModelProperty("物料特性")
|
|
|
+ private String itemAttrId;//物料特性
|
|
|
+ @ApiModelProperty("HOD")
|
|
|
+ private String hod;//HOD
|
|
|
+ @ApiModelProperty("尺码")
|
|
|
+ private String size;//尺码
|
|
|
+ @ApiModelProperty("计划装箱数量")
|
|
|
+ private java.math.BigDecimal planPackingQty;//计划装箱数量
|
|
|
+ @ApiModelProperty("分销点/DC/LABEL")
|
|
|
+ private String featureCode2;//分销点/DC/LABEL
|
|
|
+ @ApiModelProperty("计划配码规格")
|
|
|
+ private String planSizeSpec;//计划配码规格
|
|
|
+ @ApiModelProperty("实际装箱数量")
|
|
|
+ private java.math.BigDecimal actualPackingQty;//实际装箱数量
|
|
|
+ @ApiModelProperty("启始箱号")
|
|
|
+ private String startBoxNo;//启始箱号
|
|
|
+ @ApiModelProperty("结束箱号")
|
|
|
+ private String endBoxNo;//结束箱号
|
|
|
+ @ApiModelProperty("实际配码规格")
|
|
|
+ private String actualSizeSpec;//实际配码规格
|
|
|
+ @ApiModelProperty("件数/每箱")
|
|
|
+ private String setQty;//件数/每箱
|
|
|
+ @ApiModelProperty("箱数")
|
|
|
+ private java.math.BigDecimal cartons;//箱数
|
|
|
+ @ApiModelProperty("总件数")
|
|
|
+ private java.math.BigDecimal sets;//总件数
|
|
|
+ @ApiModelProperty("外箱长度")
|
|
|
+ private java.math.BigDecimal boxLength;//外箱长度
|
|
|
+ @ApiModelProperty("外箱宽度")
|
|
|
+ private java.math.BigDecimal boxWidth;//外箱宽度
|
|
|
+ @ApiModelProperty("外箱高度")
|
|
|
+ private java.math.BigDecimal boxHeight;//外箱高度
|
|
|
+ @ApiModelProperty("总体积")
|
|
|
+ private java.math.BigDecimal totalCbm;//总体积
|
|
|
+ @ApiModelProperty("外箱净重")
|
|
|
+ private java.math.BigDecimal boxNetWeight;//外箱净重
|
|
|
+ @ApiModelProperty("总净重")
|
|
|
+ private java.math.BigDecimal totalNetWeight;//总净重
|
|
|
+ @ApiModelProperty("外箱毛重")
|
|
|
+ private java.math.BigDecimal boxGrossWeight;//外箱毛重
|
|
|
+ @ApiModelProperty("总毛重")
|
|
|
+ private java.math.BigDecimal totalGrossWeight;//总毛重
|
|
|
+ @ApiModelProperty("NN.W净净重")
|
|
|
+ private java.math.BigDecimal netNetWeight;//NN.W净净重
|
|
|
+ @ApiModelProperty("单价")
|
|
|
+ private java.math.BigDecimal unitPrice;//单价
|
|
|
+ @ApiModelProperty("总价")
|
|
|
+ private java.math.BigDecimal totalPrice;//总价
|
|
|
+ @ApiModelProperty("LOT No")
|
|
|
+ private String lotNo;//LOT No
|
|
|
+ @ApiModelProperty("Packs code")
|
|
|
+ private String packsCode;//Packs code
|
|
|
+ @ApiModelProperty("DC NO")
|
|
|
+ private String dcNo;//DC NO
|
|
|
+ @ApiModelProperty("SKU NO")
|
|
|
+ private String skuNo;//SKU NO
|
|
|
+ @ApiModelProperty("标签")
|
|
|
+ private String label;//标签
|
|
|
+ @ApiModelProperty("分销点")
|
|
|
+ private String distribution;//分销点
|
|
|
+}
|