优化商品条码查询接口,支持选择多商品

This commit is contained in:
季圣华
2021-08-06 01:21:35 +08:00
parent 3269b4874a
commit c6a5689f44
5 changed files with 73 additions and 29 deletions

View File

@@ -36,6 +36,8 @@ public class MaterialVo4Unit extends Material{
private String sku;
private Long depotId;
public String getUnitName() {
return unitName;
}
@@ -163,4 +165,12 @@ public class MaterialVo4Unit extends Material{
public void setSku(String sku) {
this.sku = sku;
}
public Long getDepotId() {
return depotId;
}
public void setDepotId(Long depotId) {
this.depotId = depotId;
}
}