增加参数已服务数量
This commit is contained in:
parent
4f3df73d91
commit
385c2ed1fd
|
|
@ -194,6 +194,7 @@ public class OrderDetailController extends BaseController {
|
||||||
orderStandard.setStandardName(orderGoods.getGoodsName());
|
orderStandard.setStandardName(orderGoods.getGoodsName());
|
||||||
orderStandard.setStandardNum(orderGoods.getGoodsNum());
|
orderStandard.setStandardNum(orderGoods.getGoodsNum());
|
||||||
orderStandard.setServerNum(orderGoods.getServerGoodsNum());
|
orderStandard.setServerNum(orderGoods.getServerGoodsNum());
|
||||||
|
orderStandard.setFinishTime(orderGoods.getFinishTime());
|
||||||
standardList.add(orderStandard);
|
standardList.add(orderStandard);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,10 @@
|
||||||
package com.ghy.web.pojo.vo;
|
package com.ghy.web.pojo.vo;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class OrderStandard {
|
public class OrderStandard {
|
||||||
|
|
||||||
|
|
@ -11,4 +14,7 @@ public class OrderStandard {
|
||||||
|
|
||||||
private Integer serverNum;
|
private Integer serverNum;
|
||||||
|
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date finishTime;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue