Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
e72f06bf
Commit
e72f06bf
authored
Mar 18, 2025
by
王祖波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
跟进记录查询
parent
2a118786
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
0 deletions
+31
-0
ContactFollowSearchQDTO.java
...oban/manage/api/qdto/contact/ContactFollowSearchQDTO.java
+13
-0
TabContactFollowMapper.xml
.../main/resources/mapper/contact/TabContactFollowMapper.xml
+3
-0
ContactFollowPageQO.java
...gic/haoban/manage/web/qo/contact/ContactFollowPageQO.java
+15
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/qdto/contact/ContactFollowSearchQDTO.java
View file @
e72f06bf
...
...
@@ -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
haoban-manage3-service/src/main/resources/mapper/contact/TabContactFollowMapper.xml
View file @
e72f06bf
...
...
@@ -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>
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/contact/ContactFollowPageQO.java
View file @
e72f06bf
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment