给入库明细和出库明细的接口返回增加多属性字段

This commit is contained in:
jishenghua
2024-08-16 00:38:54 +08:00
parent 841d30fddd
commit b9e0331f13
2 changed files with 12 additions and 1 deletions

View File

@@ -18,6 +18,8 @@ public class DepotHeadVo4InDetail {
private BigDecimal unitPrice;
private String sku;
private String mUnit;
private String newRemark;
@@ -90,6 +92,14 @@ public class DepotHeadVo4InDetail {
this.unitPrice = unitPrice;
}
public String getSku() {
return sku;
}
public void setSku(String sku) {
this.sku = sku;
}
public String getmUnit() {
return mUnit;
}