商品详情

This commit is contained in:
kuang.yifei@iwhalecloud.com 2022-06-15 16:43:43 +08:00
parent 385c2ed1fd
commit 630a1b4dd4
2 changed files with 3 additions and 0 deletions

View File

@ -195,6 +195,7 @@ public class OrderDetailController extends BaseController {
orderStandard.setStandardNum(orderGoods.getGoodsNum());
orderStandard.setServerNum(orderGoods.getServerGoodsNum());
orderStandard.setFinishTime(orderGoods.getFinishTime());
orderStandard.setWaitServerNum(orderGoods.getGoodsNum() - orderGoods.getServerGoodsNum());
standardList.add(orderStandard);
}

View File

@ -14,6 +14,8 @@ public class OrderStandard {
private Integer serverNum;
private Integer waitServerNum;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date finishTime;