Commit eb379f69 authored by 周健威's avatar 周健威

修改代码

parent 1ebf31a1
......@@ -20,4 +20,8 @@ public class ItemInfoVo {
private String img;
private String name;
public void setName(String name) {
this.name = name;
}
}
......@@ -121,7 +121,7 @@ public class ConfirmOrderService {
itemInfoVo.setNumber(itemInfoDto.getNumber());
itemInfoVo.setImg(imageImgStorage.getCoverImg());
itemInfoVo.setDetailJson(JSONObject.toJSONString(imageImgStorage));
itemInfoVo.setName(imageImgStorage.getName());
itemInfoVo.setName(imageImgStorage.getName() + " (" + imageInfoRelation.getFileWidth()+ ")");
itemInfoVoList.add(itemInfoVo);
//总数量
number.updateAndGet(v -> v + itemInfoDto.getNumber());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment