PC拣货尺寸字段查询修改

This commit is contained in:
秦鸿展
2026-03-31 13:39:50 +08:00
parent a1cce28da5
commit 88a179c8c5
6 changed files with 24 additions and 2 deletions
@@ -68,6 +68,11 @@ public class PickingMaterialDetail extends BaseVOEntity {
@Excel(name = "物料条形码")
private String barCode;
@ApiModelProperty("尺寸")
@Excel(name = "尺寸")
@TableField("SIZE")
private String size;
@ApiModelProperty("净重 单位:千克")
@Excel(name = "净重 单位:千克")
private BigDecimal weightLimit;
@@ -71,6 +71,10 @@ public class PickingMaterialDetailPO extends BaseVOEntity {
@Excel(name = "物料条形码")
private String barCode;
@ApiModelProperty("尺寸")
@Excel(name = "尺寸")
private String size;
@ApiModelProperty("净重 单位:千克")
@Excel(name = "净重 单位:千克")
private BigDecimal weightLimit;
@@ -66,6 +66,10 @@ public class PickingMaterialDetailDO extends BaseVOEntity {
@Excel(name = "物料条形码")
private String barCode;
@ApiModelProperty("尺寸")
@Excel(name = "尺寸")
private String size;
@ApiModelProperty("净重 单位:千克")
@Excel(name = "净重 单位:千克")
private BigDecimal weightLimit;