入库单加字段;
This commit is contained in:
+28
@@ -336,4 +336,32 @@ public class InMaterialDetail extends BaseVOEntity {
|
|||||||
@ApiModelProperty("总价")
|
@ApiModelProperty("总价")
|
||||||
@Excel(name = "总价")
|
@Excel(name = "总价")
|
||||||
private BigDecimal totalPrice;
|
private BigDecimal totalPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("合同收费")
|
||||||
|
@Excel(name = "合同收费")
|
||||||
|
private BigDecimal contractFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("每月仓租")
|
||||||
|
@Excel(name = "每月仓租")
|
||||||
|
private BigDecimal monthlyWarehouseFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("半月仓租")
|
||||||
|
@Excel(name = "半月仓租")
|
||||||
|
private BigDecimal halfMonthWhFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("折扣(%)")
|
||||||
|
@Excel(name = "折扣(%)")
|
||||||
|
private BigDecimal discountRate;
|
||||||
|
|
||||||
|
@ApiModelProperty("单体积(CBM)")
|
||||||
|
@Excel(name = "单体积(CBM)")
|
||||||
|
private BigDecimal singleVolume;
|
||||||
|
|
||||||
|
@ApiModelProperty("单毛重(KG)")
|
||||||
|
@Excel(name = "单毛重(KG)")
|
||||||
|
private BigDecimal singleGrossWeight;
|
||||||
|
|
||||||
|
@ApiModelProperty("lot编号")
|
||||||
|
@Excel(name = "lot编号")
|
||||||
|
private String lotNo;
|
||||||
}
|
}
|
||||||
+29
@@ -381,4 +381,33 @@ public class InMaterialDetailPO extends StockInOrderBasePO {
|
|||||||
@Excel(name = "扩展属性4")
|
@Excel(name = "扩展属性4")
|
||||||
private String extAttr4;
|
private String extAttr4;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("合同收费")
|
||||||
|
@Excel(name = "合同收费")
|
||||||
|
private BigDecimal contractFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("每月仓租")
|
||||||
|
@Excel(name = "每月仓租")
|
||||||
|
private BigDecimal monthlyWarehouseFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("半月仓租")
|
||||||
|
@Excel(name = "半月仓租")
|
||||||
|
private BigDecimal halfMonthWhFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("折扣(%)")
|
||||||
|
@Excel(name = "折扣(%)")
|
||||||
|
private BigDecimal discountRate;
|
||||||
|
|
||||||
|
@ApiModelProperty("单体积(CBM)")
|
||||||
|
@Excel(name = "单体积(CBM)")
|
||||||
|
private BigDecimal singleVolume;
|
||||||
|
|
||||||
|
@ApiModelProperty("单毛重(KG)")
|
||||||
|
@Excel(name = "单毛重(KG)")
|
||||||
|
private BigDecimal singleGrossWeight;
|
||||||
|
|
||||||
|
@ApiModelProperty("lot编号")
|
||||||
|
@Excel(name = "lot编号")
|
||||||
|
private String lotNo;
|
||||||
|
|
||||||
}
|
}
|
||||||
+29
@@ -343,4 +343,33 @@ public class InMaterialDetailDO extends StockInOrderBaseDO {
|
|||||||
@ApiModelProperty("总价(输入大于等于0的数字,可以为小数)")
|
@ApiModelProperty("总价(输入大于等于0的数字,可以为小数)")
|
||||||
@Excel(name = "总价")
|
@Excel(name = "总价")
|
||||||
private BigDecimal totalPrice;
|
private BigDecimal totalPrice;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("合同收费")
|
||||||
|
@Excel(name = "合同收费")
|
||||||
|
private BigDecimal contractFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("每月仓租")
|
||||||
|
@Excel(name = "每月仓租")
|
||||||
|
private BigDecimal monthlyWarehouseFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("半月仓租")
|
||||||
|
@Excel(name = "半月仓租")
|
||||||
|
private BigDecimal halfMonthWhFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("折扣(%)")
|
||||||
|
@Excel(name = "折扣(%)")
|
||||||
|
private BigDecimal discountRate;
|
||||||
|
|
||||||
|
@ApiModelProperty("单体积(CBM)")
|
||||||
|
@Excel(name = "单体积(CBM)")
|
||||||
|
private BigDecimal singleVolume;
|
||||||
|
|
||||||
|
@ApiModelProperty("单毛重(KG)")
|
||||||
|
@Excel(name = "单毛重(KG)")
|
||||||
|
private BigDecimal singleGrossWeight;
|
||||||
|
|
||||||
|
@ApiModelProperty("lot编号")
|
||||||
|
@Excel(name = "lot编号")
|
||||||
|
private String lotNo;
|
||||||
}
|
}
|
||||||
@@ -326,4 +326,30 @@ public class StockInOrder extends BaseVOEntity {
|
|||||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
@Excel(name = "下单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "下单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
private Date orderDate;
|
private Date orderDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务单号")
|
||||||
|
@Excel(name = "业务单号")
|
||||||
|
private String businessOrderNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务类型")
|
||||||
|
@Excel(name = "业务类型")
|
||||||
|
private String businessType;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单人")
|
||||||
|
@Excel(name = "制单人")
|
||||||
|
private String documentCreator;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单人名称")
|
||||||
|
@Excel(name = "制单人名称")
|
||||||
|
private String documentCreatorName;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单日期")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@Excel(name = "制单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("订单状态")
|
||||||
|
@Excel(name = "订单状态")
|
||||||
|
private String orderStatus;
|
||||||
}
|
}
|
||||||
+27
@@ -346,4 +346,31 @@ public class StockInOrderPO extends BaseVOEntity {
|
|||||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
@Excel(name = "下单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "下单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
private Date orderDate;
|
private Date orderDate;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("业务单号")
|
||||||
|
@Excel(name = "业务单号")
|
||||||
|
private String businessOrderNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务类型")
|
||||||
|
@Excel(name = "业务类型")
|
||||||
|
private String businessType;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单人")
|
||||||
|
@Excel(name = "制单人")
|
||||||
|
private String documentCreator;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单人名称")
|
||||||
|
@Excel(name = "制单人名称")
|
||||||
|
private String documentCreatorName;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单日期")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@Excel(name = "制单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("订单状态")
|
||||||
|
@Excel(name = "订单状态")
|
||||||
|
private String orderStatus;
|
||||||
}
|
}
|
||||||
+27
@@ -341,6 +341,33 @@ public class StockInOrderDO extends BaseVOEntity {
|
|||||||
@Excel(name = "下单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "下单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
private Date orderDate;
|
private Date orderDate;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("业务单号")
|
||||||
|
@Excel(name = "业务单号")
|
||||||
|
private String businessOrderNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务类型")
|
||||||
|
@Excel(name = "业务类型")
|
||||||
|
private String businessType;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单人")
|
||||||
|
@Excel(name = "制单人")
|
||||||
|
private String documentCreator;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单人名称")
|
||||||
|
@Excel(name = "制单人名称")
|
||||||
|
private String documentCreatorName;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单日期")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@Excel(name = "制单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("订单状态")
|
||||||
|
@Excel(name = "订单状态")
|
||||||
|
private String orderStatus;
|
||||||
|
|
||||||
@ApiModelProperty(name = "创建时间查询条件开始日期")
|
@ApiModelProperty(name = "创建时间查询条件开始日期")
|
||||||
private String createTimeStart;
|
private String createTimeStart;
|
||||||
|
|
||||||
|
|||||||
+28
@@ -352,4 +352,32 @@ public class InMaterialDetailDTO extends BaseVOEntity {
|
|||||||
@Excel(name = "总价")
|
@Excel(name = "总价")
|
||||||
private BigDecimal totalPrice;
|
private BigDecimal totalPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("合同收费")
|
||||||
|
@Excel(name = "合同收费")
|
||||||
|
private BigDecimal contractFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("每月仓租")
|
||||||
|
@Excel(name = "每月仓租")
|
||||||
|
private BigDecimal monthlyWarehouseFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("半月仓租")
|
||||||
|
@Excel(name = "半月仓租")
|
||||||
|
private BigDecimal halfMonthWhFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("折扣(%)")
|
||||||
|
@Excel(name = "折扣(%)")
|
||||||
|
private BigDecimal discountRate;
|
||||||
|
|
||||||
|
@ApiModelProperty("单体积(CBM)")
|
||||||
|
@Excel(name = "单体积(CBM)")
|
||||||
|
private BigDecimal singleVolume;
|
||||||
|
|
||||||
|
@ApiModelProperty("单毛重(KG)")
|
||||||
|
@Excel(name = "单毛重(KG)")
|
||||||
|
private BigDecimal singleGrossWeight;
|
||||||
|
|
||||||
|
@ApiModelProperty("lot编号")
|
||||||
|
@Excel(name = "lot编号")
|
||||||
|
private String lotNo;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -338,6 +338,33 @@ public class StockInOrderDTO extends StockInOrderBaseDTO {
|
|||||||
@Excel(name = "下单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "下单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
private Date orderDate;
|
private Date orderDate;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("业务单号")
|
||||||
|
@Excel(name = "业务单号")
|
||||||
|
private String businessOrderNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务类型")
|
||||||
|
@Excel(name = "业务类型")
|
||||||
|
private String businessType;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单人")
|
||||||
|
@Excel(name = "制单人")
|
||||||
|
private String documentCreator;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单人名称")
|
||||||
|
@Excel(name = "制单人名称")
|
||||||
|
private String documentCreatorName;
|
||||||
|
|
||||||
|
@ApiModelProperty("制单日期")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@Excel(name = "制单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("订单状态")
|
||||||
|
@Excel(name = "订单状态")
|
||||||
|
private String orderStatus;
|
||||||
|
|
||||||
@ApiModelProperty(name = "创建时间查询条件开始日期")
|
@ApiModelProperty(name = "创建时间查询条件开始日期")
|
||||||
private String createTimeStart;
|
private String createTimeStart;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user