Browse Source

Merge remote-tracking branch 'origin/dev_ic_v2' into develop

master
yinzuomei 4 years ago
parent
commit
15fde64028
  1. 14
      epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/demand/DemandRecResultDTO.java
  2. 1
      epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/IcUserDemandRecDao.xml

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

@ -1,7 +1,6 @@
package com.epmet.dto.result.demand; package com.epmet.dto.result.demand;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data; import lombok.Data;
import java.io.Serializable; import java.io.Serializable;
@ -19,8 +18,9 @@ public class DemandRecResultDTO implements Serializable {
private String gridName; private String gridName;
private String agencyId; private String agencyId;
@JsonIgnore //@JsonIgnore
private String categoryCode; private String categoryCode;
private String parentCode;
private String categoryName; private String categoryName;
@ -32,14 +32,14 @@ public class DemandRecResultDTO implements Serializable {
private String content; private String content;
private String reportUserName; private String reportUserName;
private String reportUserMobile; private String reportUserMobile;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date reportTime; private Date reportTime;
private String demandUserId; private String demandUserId;
private String demandUser; private String demandUser;
private String demandUserName; private String demandUserName;
private String demandUserMobile; private String demandUserMobile;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date wantServiceTime; private Date wantServiceTime;
/** /**
@ -57,7 +57,7 @@ public class DemandRecResultDTO implements Serializable {
/** /**
* 取消时间 * 取消时间
*/ */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date cancelTime; private Date cancelTime;
/** /**
@ -100,13 +100,13 @@ public class DemandRecResultDTO implements Serializable {
/** /**
* 实际服务开始时间 * 实际服务开始时间
*/ */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date serviceStartTime; private Date serviceStartTime;
/** /**
* 实际服务结束时间 * 实际服务结束时间
*/ */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date serviceEndTime; private Date serviceEndTime;
/** /**

1
epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/IcUserDemandRecDao.xml

@ -41,6 +41,7 @@
r.GRID_ID as gridId, r.GRID_ID as gridId,
r.agency_id as agencyId, r.agency_id as agencyId,
r.CATEGORY_CODE as categoryCode, r.CATEGORY_CODE as categoryCode,
r.PARENT_CODE as parentCode,
r.CONTENT, r.CONTENT,
r.REPORT_TYPE as reportType, r.REPORT_TYPE as reportType,
r.REPORT_TIME as reportTime, r.REPORT_TIME as reportTime,

Loading…
Cancel
Save