优化商品模块的库存统计

This commit is contained in:
季圣华
2019-10-12 15:03:04 +08:00
parent ee8390559b
commit f90aa299aa
5 changed files with 30 additions and 55 deletions

View File

@@ -10,7 +10,7 @@ public class MaterialVo4Unit extends Material{
private String materialOther;
private Long stock;
private BigDecimal stock;
public String getUnitName() {
return unitName;
@@ -36,11 +36,11 @@ public class MaterialVo4Unit extends Material{
this.materialOther = materialOther;
}
public Long getStock() {
public BigDecimal getStock() {
return stock;
}
public void setStock(Long stock) {
public void setStock(BigDecimal stock) {
this.stock = stock;
}
}