|
@ -43,16 +43,12 @@ public class UserDemandPageFormDTO extends PageFormDTO implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* 上报时间开始 |
|
|
* 上报时间开始 |
|
|
*/ |
|
|
*/ |
|
|
@JsonFormat(timezone="GMT+8", pattern="yyyy-MM-dd") |
|
|
private String reportStartTime; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
private Date reportStartTime; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 上报时间截止 |
|
|
* 上报时间截止 |
|
|
*/ |
|
|
*/ |
|
|
@JsonFormat(timezone="GMT+8", pattern="yyyy-MM-dd") |
|
|
private String reportEndTime; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
private Date reportEndTime; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 待处理:pending;已取消canceled;已派单:assigned;已接单:have_order;已完成:finished |
|
|
* 待处理:pending;已取消canceled;已派单:assigned;已接单:have_order;已完成:finished |
|
@ -75,14 +71,10 @@ public class UserDemandPageFormDTO extends PageFormDTO implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* 希望服务时间开始 |
|
|
* 希望服务时间开始 |
|
|
*/ |
|
|
*/ |
|
|
@JsonFormat(timezone="GMT+8", pattern="yyyy-MM-dd") |
|
|
private String wantServiceStartTime; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
private Date wantServiceStartTime; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 希望截止 |
|
|
* 希望截止 |
|
|
*/ |
|
|
*/ |
|
|
@JsonFormat(timezone="GMT+8", pattern="yyyy-MM-dd") |
|
|
private String wantServiceEndTime; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
private Date wantServiceEndTime; |
|
|
|
|
|
} |
|
|
} |
|
|