给单据明细增加重量字段的展示

This commit is contained in:
季圣华
2023-02-09 22:13:36 +08:00
parent 07d1f4ad68
commit d287402f67
3 changed files with 17 additions and 1 deletions

View File

@@ -48,6 +48,8 @@ public class DepotItemVo4WithInfoEx extends DepotItem{
private String barCode;
private BigDecimal weight;
public Long getMId() {
return MId;
}
@@ -223,4 +225,12 @@ public class DepotItemVo4WithInfoEx extends DepotItem{
public void setBarCode(String barCode) {
this.barCode = barCode;
}
public BigDecimal getWeight() {
return weight;
}
public void setWeight(BigDecimal weight) {
this.weight = weight;
}
}