|
@@ -249,6 +249,41 @@ public class SyPackingListFabricItem implements Serializable {
|
|
|
@ApiModelProperty(value = "申报要素ID")
|
|
|
private String elementsId;
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ @Excel(name = "预发货日期", width = 20, format = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ @ApiModelProperty(value = "预发货日期")
|
|
|
+ private java.util.Date preDeliveryDate;
|
|
|
+
|
|
|
+ @Excel(name = "小po", width = 15)
|
|
|
+ @ApiModelProperty(value = "小po")
|
|
|
+ private java.lang.String smallPo;
|
|
|
+
|
|
|
+ @Excel(name = "分销点", width = 15)
|
|
|
+ @ApiModelProperty(value = "分销点")
|
|
|
+ private String distributionPoint;
|
|
|
+
|
|
|
+ @Excel(name = "采购/委外订单号", width = 15)
|
|
|
+ @ApiModelProperty(value = "采购/委外订单号")
|
|
|
+ private String purOrSubOrder;
|
|
|
+
|
|
|
+ @Excel(name = "订单类型", width = 15)
|
|
|
+ @ApiModelProperty(value = "订单类型")
|
|
|
+ private String orderType;
|
|
|
+
|
|
|
+ @Excel(name = "工厂单价", width = 15)
|
|
|
+ @ApiModelProperty(value = "工厂单价")
|
|
|
+ private String factoryUnitPrice;
|
|
|
+
|
|
|
+ @Excel(name = "总体积", width = 15)
|
|
|
+ @ApiModelProperty(value = "总体积")
|
|
|
+ private java.math.BigDecimal totalVolume;
|
|
|
+
|
|
|
+ @Excel(name = "总价", width = 15)
|
|
|
+ @ApiModelProperty(value = "总价")
|
|
|
+ private java.math.BigDecimal totalPrice;
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "业务部门(销售部门)")
|