Commit e72f06bf by 王祖波

跟进记录查询

parent 2a118786
......@@ -15,6 +15,11 @@ public class ContactFollowSearchQDTO implements Serializable {
*/
private String clerkId;
/**
* 开始时间
*/
private Date beginTime;
public String getMemberId() {
return memberId;
}
......@@ -31,4 +36,11 @@ public class ContactFollowSearchQDTO implements Serializable {
this.clerkId = clerkId;
}
public Date getBeginTime() {
return beginTime;
}
public void setBeginTime(Date beginTime) {
this.beginTime = beginTime;
}
}
\ No newline at end of file
......@@ -71,6 +71,9 @@
<if test="search.memberId != null and search.memberId != ''">
AND member_id = #{search.memberId}
</if>
<if test="search.beginTime != null">
AND follow_time >= #{search.beginTime}
</if>
</where>
ORDER BY follow_time DESC,follow_id DESC
</select>
......
......@@ -2,6 +2,8 @@ package com.gic.haoban.manage.web.qo.contact;
import com.gic.commons.web.qo.PageQo;
import java.util.Date;
/**
* Created by wangzubo on 2025/3/15.
*/
......@@ -17,6 +19,11 @@ public class ContactFollowPageQO extends PageQo {
private String clerkId;
/**
* 开始时间
*/
private Date beginTime;
/**
* 企业id
*/
private String enterpriseId;
......@@ -37,6 +44,14 @@ public class ContactFollowPageQO extends PageQo {
this.clerkId = clerkId;
}
public Date getBeginTime() {
return beginTime;
}
public void setBeginTime(Date beginTime) {
this.beginTime = beginTime;
}
public String getEnterpriseId() {
return enterpriseId;
}
......
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