|
|
@@ -3,6 +3,8 @@ package com.goafanti.customer.bo;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.goafanti.common.utils.excel.Excel;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
public class OutUserClueList {
|
|
|
|
|
|
private String id;
|
|
|
@@ -15,8 +17,8 @@ public class OutUserClueList {
|
|
|
private String adminName;
|
|
|
private String clueAname;
|
|
|
private String clueProcess;
|
|
|
- private String clueTime;
|
|
|
- private String clueTransferTime;
|
|
|
+ private Date clueTime;
|
|
|
+ private Date clueTransferTime;
|
|
|
|
|
|
public String getClueAname() {
|
|
|
return clueAname;
|
|
|
@@ -26,11 +28,12 @@ public class OutUserClueList {
|
|
|
this.clueAname = clueAname;
|
|
|
}
|
|
|
|
|
|
- public String getClueTransferTime() {
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ public Date getClueTransferTime() {
|
|
|
return clueTransferTime;
|
|
|
}
|
|
|
|
|
|
- public void setClueTransferTime(String clueTransferTime) {
|
|
|
+ public void setClueTransferTime(Date clueTransferTime) {
|
|
|
this.clueTransferTime = clueTransferTime;
|
|
|
}
|
|
|
|
|
|
@@ -83,11 +86,11 @@ public class OutUserClueList {
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
- public String getClueTime() {
|
|
|
+ public Date getClueTime() {
|
|
|
return clueTime;
|
|
|
}
|
|
|
|
|
|
- public void setClueTime(String clueTime) {
|
|
|
+ public void setClueTime(Date clueTime) {
|
|
|
this.clueTime = clueTime;
|
|
|
}
|
|
|
}
|