新增移位保存净重(KG)、毛重(KG)、体积(CBM)、面积(SQM)

This commit is contained in:
zhou-hongcheng
2026-02-27 09:40:02 +08:00
parent 961d8a462d
commit 54cd738bd6
4 changed files with 62 additions and 0 deletions
@@ -244,7 +244,21 @@ public class ShiftMaterialDetail extends BaseVOEntity {
@ApiModelProperty("移位类型")
private Integer shiftType;
@ApiModelProperty("净重(KG)")
@Excel(name = "净重(KG)")
private BigDecimal netWeight;
@ApiModelProperty("毛重(KG)")
@Excel(name = "毛重(KG)")
private BigDecimal grossWeight;
@ApiModelProperty("体积")
@Excel(name = "体积")
private BigDecimal volume;
@ApiModelProperty("面积")
@Excel(name = "面积")
private BigDecimal area;
@ApiModelProperty("移位详情")
@TableField(exist = false)
@@ -247,6 +247,22 @@ public class ShiftMaterialDetailDO extends BaseVOEntity {
@Excel(name = "物料状态名称")
private String materialStatusName;
@ApiModelProperty("净重(KG)")
@Excel(name = "净重(KG)")
private BigDecimal netWeight;
@ApiModelProperty("毛重(KG)")
@Excel(name = "毛重(KG)")
private BigDecimal grossWeight;
@ApiModelProperty("体积")
@Excel(name = "体积")
private BigDecimal volume;
@ApiModelProperty("面积")
@Excel(name = "面积")
private BigDecimal area;
@ApiModelProperty("移位详情")
@TableField(exist = false)
private List<ShiftMaterialDetailDO> children;