|
@@ -0,0 +1,99 @@
|
|
|
+package org.jeecg.modules.splfi.vo;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import org.jeecg.modules.splfi.entity.SyPackingListFabricItem;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+
|
|
|
+ * @Description: 面料装箱单
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2022-07-27
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ApiModel(value="SyPackingListFabricVo对象", description="面料装箱单")
|
|
|
+public class SyPackingListFabricVo {
|
|
|
+
|
|
|
+ @Excel(name = "主表ID", width = 15)
|
|
|
+ private String syShippingDetailsId;
|
|
|
+ @Excel(name = "子表ID", width = 15)
|
|
|
+ private String syShippingDetailsItemId;
|
|
|
+ @Excel(name = "报关ID", width = 15)
|
|
|
+ private String elementsId;
|
|
|
+ @Excel(name = "成衣工厂", width = 15)
|
|
|
+ private String theGarmentFactory;
|
|
|
+ @Excel(name = "业务员 Merchandiser", width = 15)
|
|
|
+ private String salesman;
|
|
|
+ @Excel(name = "计划单号", width = 15)
|
|
|
+ private String planLotNumber;
|
|
|
+ @Excel(name = "款号/Kimball", width = 15)
|
|
|
+ private String itemNumber;
|
|
|
+ @Excel(name = "颜色/Color", width = 15)
|
|
|
+ private String colour;
|
|
|
+ @Excel(name = "缸号/Batch no.", width = 15)
|
|
|
+ private String dyelotNumber;
|
|
|
+ @Excel(name = "项目/Item(存货编码)", width = 15)
|
|
|
+ private String inventoryCode;
|
|
|
+ @Excel(name = "存货名称(辅料名称)", width = 15)
|
|
|
+ private String inventoryName;
|
|
|
+ @Excel(name = "报关品名", width = 15)
|
|
|
+ private String declarationName;
|
|
|
+ @Excel(name = "成分/Composition", width = 15)
|
|
|
+ private String composition;
|
|
|
+ @Excel(name = "门幅/Width", width = 15)
|
|
|
+ private String width;
|
|
|
+ @Excel(name = "匹数/Rolls", width = 15)
|
|
|
+ private java.math.BigDecimal rolls;
|
|
|
+ @Excel(name = "毛重/GW/kg", width = 15)
|
|
|
+ private java.math.BigDecimal grossWeight;
|
|
|
+ @Excel(name = "净重/NW/kg", width = 15)
|
|
|
+ private java.math.BigDecimal netWeight;
|
|
|
+ @Excel(name = "染后重", width = 15)
|
|
|
+ private java.math.BigDecimal afterHeavy;
|
|
|
+ @Excel(name = "拷布重", width = 15)
|
|
|
+ private java.math.BigDecimal kaoClothWeight;
|
|
|
+ @Excel(name = "米数/Length/m ", width = 15)
|
|
|
+ private java.math.BigDecimal meter;
|
|
|
+ @Excel(name = "单价", width = 15)
|
|
|
+ private java.math.BigDecimal price;
|
|
|
+ @Excel(name = "克重/G", width = 15)
|
|
|
+ private String gramWeight;
|
|
|
+ @Excel(name = "供应商编码(染厂)", width = 15)
|
|
|
+ private String supplierCodeDyeingPlant;
|
|
|
+ @Excel(name = "供应商(染厂)", width = 15)
|
|
|
+ private String supplierDyeingPlant;
|
|
|
+ @Excel(name = "供应商编码(印厂)", width = 15)
|
|
|
+ private String supplierCodePrintingPlant;
|
|
|
+ @Excel(name = "供应商(印厂)", width = 15)
|
|
|
+ private String supplierPrintingPlant;
|
|
|
+ @Excel(name = "规格型号", width = 15)
|
|
|
+ private String specificationAndModel;
|
|
|
+ @Excel(name = "单位", width = 15)
|
|
|
+ private String masterMetering;
|
|
|
+ @Excel(name = "包装方式", width = 15)
|
|
|
+ private String mannerOfPacking;
|
|
|
+ @Excel(name = "处理方式", width = 15)
|
|
|
+ private String treatmentMethod;
|
|
|
+ @Excel(name = "是否手册纱", width = 15)
|
|
|
+ private Integer manualYarnFlag;
|
|
|
+ @Excel(name = "手册纱单价", width = 15)
|
|
|
+ private java.math.BigDecimal manualYarnUnitPrice;
|
|
|
+ @Excel(name = "手册纱占比%", width = 15)
|
|
|
+ private String manualYarnProportion;
|
|
|
+ @Excel(name = "柜号", width = 15)
|
|
|
+ private String containerNumber;
|
|
|
+ @Excel(name = "备注(U8)", width = 15)
|
|
|
+ private Object remarks1;
|
|
|
+ @Excel(name = "超发", width = 15)
|
|
|
+ private java.math.BigDecimal excessQuantity;
|
|
|
+ @Excel(name = "实际报关数量", width = 15)
|
|
|
+ private java.math.BigDecimal actualDeclaredQuantity;
|
|
|
+}
|