物料管理-新增/编辑-添加毛重,修改汇率管理问题

This commit is contained in:
zhaoqing
2026-05-11 15:55:43 +08:00
parent 594cd7a269
commit e7202f100d
12 changed files with 40 additions and 4 deletions
@@ -220,4 +220,8 @@ public class MaterialBaseInfo extends BaseVOEntity {
@ApiModelProperty(name = "推送人")
private Long pushBy;
@ApiModelProperty("毛重(kg")
@Excel(name = "毛重(kg")
private BigDecimal grossWeight;
}
@@ -257,6 +257,10 @@ public class MaterialBaseInfoPO extends BaseVOEntity {
@Excel(name = "货物类型:0-物料 1-半成品 2-成品")
private Integer goodsType;
@ApiModelProperty("毛重(kg")
@Excel(name = "毛重(kg")
private BigDecimal grossWeight;
@ApiModelProperty("推送状态 1-未推送 2推送中 3-推送成功 4-推送失败")
private Integer pushStatus;
@@ -226,6 +226,10 @@ public class MaterialBaseInfoDO extends BaseVOEntity {
@Excel(name = "货物类型:0-物料 1-半成品 2-成品")
private Integer goodsType;
@ApiModelProperty("毛重(kg")
@Excel(name = "毛重(kg")
private BigDecimal grossWeight;
@ApiModelProperty("推送状态")
private Integer pushStatus;
@@ -269,6 +269,10 @@ public class MaterialBaseInfoDTO extends BaseVOEntity {
@Excel(name = "货物类型:0-物料 1-半成品 2-成品")
private Integer goodsType;
@ApiModelProperty("毛重(kg")
@Excel(name = "毛重(kg")
private BigDecimal grossWeight;
@ApiModelProperty("推送状态")
private Integer pushStatus;