Browse Source

列表服务时间格式化

master
yinzuomei 4 years ago
parent
commit
acf82ec7a2
  1. 3
      epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/demand/DemandRecResultDTO.java

3
epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/demand/DemandRecResultDTO.java

@ -39,7 +39,7 @@ public class DemandRecResultDTO implements Serializable {
private String demandUserMobile; private String demandUserMobile;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
private String wantServiceTime; private Date wantServiceTime;
/** /**
* 待处理pending已取消canceled已派单assigned已接单have_order已完成finished * 待处理pending已取消canceled已派单assigned已接单have_order已完成finished
@ -56,6 +56,7 @@ public class DemandRecResultDTO implements Serializable {
/** /**
* 取消时间 * 取消时间
*/ */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
private Date cancelTime; private Date cancelTime;
/** /**

Loading…
Cancel
Save