|
|
@@ -69,11 +69,15 @@ public class WaybillOrderDriverVo {
|
|
|
/**
|
|
|
* 计划结束时间
|
|
|
*/
|
|
|
+ @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date endTime;
|
|
|
|
|
|
/**
|
|
|
* 计划开始时间
|
|
|
*/
|
|
|
+ @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date startTime;
|
|
|
|
|
|
/**
|
|
|
@@ -171,12 +175,14 @@ public class WaybillOrderDriverVo {
|
|
|
* 派车时间-创建时间
|
|
|
*/
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date createTime;
|
|
|
|
|
|
/**
|
|
|
* 操作时间
|
|
|
*/
|
|
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date operateTime;
|
|
|
|
|
|
public String getTypeName() {
|