|
@@ -1,5 +1,9 @@
|
|
|
package com.goafanti.customer.bo;
|
|
package com.goafanti.customer.bo;
|
|
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
+
|
|
|
|
|
+import java.util.Date;
|
|
|
|
|
+
|
|
|
public class PublicReleaseListBo {
|
|
public class PublicReleaseListBo {
|
|
|
|
|
|
|
|
private Integer prdId;
|
|
private Integer prdId;
|
|
@@ -67,7 +71,7 @@ public class PublicReleaseListBo {
|
|
|
/**
|
|
/**
|
|
|
* 跟进时间
|
|
* 跟进时间
|
|
|
*/
|
|
*/
|
|
|
- private String followTime;
|
|
|
|
|
|
|
+ private Date followTime;
|
|
|
/**
|
|
/**
|
|
|
* 跟进次数
|
|
* 跟进次数
|
|
|
*/
|
|
*/
|
|
@@ -225,11 +229,12 @@ public class PublicReleaseListBo {
|
|
|
this.contactType = contactType;
|
|
this.contactType = contactType;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public String getFollowTime() {
|
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
+ public Date getFollowTime() {
|
|
|
return followTime;
|
|
return followTime;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setFollowTime(String followTime) {
|
|
|
|
|
|
|
+ public void setFollowTime(Date followTime) {
|
|
|
this.followTime = followTime;
|
|
this.followTime = followTime;
|
|
|
}
|
|
}
|
|
|
|
|
|