给商品库存统计接口增加重量字段展示
This commit is contained in:
@@ -34,6 +34,8 @@ public class MaterialVo4Unit extends Material{
|
||||
|
||||
private BigDecimal currentStockPrice;
|
||||
|
||||
private BigDecimal currentWeight;
|
||||
|
||||
private String sku;
|
||||
|
||||
private Long depotId;
|
||||
@@ -163,6 +165,14 @@ public class MaterialVo4Unit extends Material{
|
||||
this.currentStockPrice = currentStockPrice;
|
||||
}
|
||||
|
||||
public BigDecimal getCurrentWeight() {
|
||||
return currentWeight;
|
||||
}
|
||||
|
||||
public void setCurrentWeight(BigDecimal currentWeight) {
|
||||
this.currentWeight = currentWeight;
|
||||
}
|
||||
|
||||
public String getSku() {
|
||||
return sku;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user