新增移位保存净重(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;
@@ -161,4 +161,20 @@ public class MaterialInventoryDTO extends MaterialBaseDTO {
private String boxPalletNo;
//查询规则 hz:货主,wl:物料,kw:库位,wlkw:物料库位,all:全部
private String queryRule;
@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;
}
@@ -239,6 +239,22 @@ public class ShiftMaterialDetailDTO extends BaseVOEntity {
@Excel(name = "备注")
private String remark;
@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(name = "组织ID集合")
private List<Long> organizationIdList;