【入库管理】列表添加字段

添加计划入库数量、收货数量、上架数量
This commit is contained in:
秦鸿展
2026-02-10 17:29:58 +08:00
parent 49ba1cc8fd
commit d8400d3a9d
2 changed files with 47 additions and 3 deletions
@@ -149,10 +149,31 @@ public class StockInOrderPO extends BaseVOEntity {
@Excel(name = "物料种数")
private Integer materialQuantity;
@ApiModelProperty("计划数量")
@Excel(name = "计划数量")
@ApiModelProperty("计划数量(原字段)")
@Excel(name = "计划数量(原字段)")
private BigDecimal quantity;
/**
* 计划入库数量:取入库单明细中的入库数量汇总
*/
@ApiModelProperty("计划入库数量")
@Excel(name = "计划入库数量")
private BigDecimal planInQuantity;
/**
* 收货数量:入库单对应的收货单实际收货数量汇总
*/
@ApiModelProperty("收货数量")
@Excel(name = "收货数量")
private BigDecimal receiptQuantity;
/**
* 上架数量:入库单对应的上架单实际上架数量汇总
*/
@ApiModelProperty("上架数量")
@Excel(name = "上架数量")
private BigDecimal shelvesQuantity;
@ApiModelProperty("净重 单位:千克")
@Excel(name = "净重 单位:千克")
private BigDecimal weightLimit;