增加参数已服务数量

This commit is contained in:
kuang.yifei@iwhalecloud.com 2022-06-15 16:35:26 +08:00
parent 4f3df73d91
commit 385c2ed1fd
2 changed files with 7 additions and 0 deletions

View File

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

View File

@ -1,7 +1,10 @@
package com.ghy.web.pojo.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
@Data
public class OrderStandard {
@ -11,4 +14,7 @@ public class OrderStandard {
private Integer serverNum;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date finishTime;
}