Commit ec6fdba2 by 王祖波

增加跟进时间

parent b5c7e5df
...@@ -103,6 +103,11 @@ public class InteractRecordInfoDTO implements Serializable { ...@@ -103,6 +103,11 @@ public class InteractRecordInfoDTO implements Serializable {
*/ */
private InteractRecordExtendInfoDTO extendInfo; private InteractRecordExtendInfoDTO extendInfo;
/**
* 跟进时间
*/
private Date followTime;
public String getMemberId() { public String getMemberId() {
return memberId; return memberId;
} }
...@@ -238,4 +243,12 @@ public class InteractRecordInfoDTO implements Serializable { ...@@ -238,4 +243,12 @@ public class InteractRecordInfoDTO implements Serializable {
public void setBizTypeAggs(Integer bizTypeAggs) { public void setBizTypeAggs(Integer bizTypeAggs) {
this.bizTypeAggs = bizTypeAggs; this.bizTypeAggs = bizTypeAggs;
} }
public Date getFollowTime() {
return followTime;
}
public void setFollowTime(Date followTime) {
this.followTime = followTime;
}
} }
...@@ -103,4 +103,9 @@ public class InteractRecordBO { ...@@ -103,4 +103,9 @@ public class InteractRecordBO {
* 最新访问时间 * 最新访问时间
*/ */
private Date lastAccessTime; private Date lastAccessTime;
/**
* 跟进时间
*/
private Date followTime;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment