完善单据查询接口,增加品牌和制造商字段

This commit is contained in:
jishenghua
2024-10-06 00:45:39 +08:00
parent a29a96bc88
commit 536718d326
5 changed files with 33 additions and 21 deletions

View File

@@ -56,6 +56,8 @@ public class DepotItemVo4WithInfoEx extends DepotItem{
private String imgName;
private String brand;
public Long getMId() {
return MId;
}
@@ -263,4 +265,12 @@ public class DepotItemVo4WithInfoEx extends DepotItem{
public void setImgName(String imgName) {
this.imgName = imgName;
}
public String getBrand() {
return brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
}