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

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

@@ -254,6 +254,7 @@ public class DepotItemController {
BigDecimal allWeight = diEx.getBasicNumber()==null||diEx.getWeight()==null?BigDecimal.ZERO:diEx.getBasicNumber().multiply(diEx.getWeight());
item.put("weight", allWeight);
item.put("remark", diEx.getRemark());
item.put("imgName", diEx.getImgName());
item.put("linkId", diEx.getLinkId());
item.put("depotId", diEx.getDepotId() == null ? "" : diEx.getDepotId());
item.put("depotName", diEx.getDepotId() == null ? "" : diEx.getDepotName());