增加参数已服务数量

This commit is contained in:
kuang.yifei@iwhalecloud.com 2022-06-15 16:30:17 +08:00
parent ab3e572f0a
commit 4f3df73d91
2 changed files with 3 additions and 0 deletions

View File

@ -193,6 +193,7 @@ public class OrderDetailController extends BaseController {
OrderStandard orderStandard = new OrderStandard(); OrderStandard orderStandard = new OrderStandard();
orderStandard.setStandardName(orderGoods.getGoodsName()); orderStandard.setStandardName(orderGoods.getGoodsName());
orderStandard.setStandardNum(orderGoods.getGoodsNum()); orderStandard.setStandardNum(orderGoods.getGoodsNum());
orderStandard.setServerNum(orderGoods.getServerGoodsNum());
standardList.add(orderStandard); standardList.add(orderStandard);
} }

View File

@ -9,4 +9,6 @@ public class OrderStandard {
private Integer standardNum; private Integer standardNum;
private Integer serverNum;
} }