给商品相关接口增加图片缩略图字段的返回

This commit is contained in:
季圣华
2023-07-05 23:59:55 +08:00
parent 62c011e954
commit d67fa0ccf6
5 changed files with 85 additions and 4 deletions

View File

@@ -50,6 +50,8 @@ public class DepotItemVo4WithInfoEx extends DepotItem{
private BigDecimal weight;
private String imgName;
public Long getMId() {
return MId;
}
@@ -233,4 +235,12 @@ public class DepotItemVo4WithInfoEx extends DepotItem{
public void setWeight(BigDecimal weight) {
this.weight = weight;
}
public String getImgName() {
return imgName;
}
public void setImgName(String imgName) {
this.imgName = imgName;
}
}