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
121169fd
Commit
121169fd
authored
May 16, 2025
by
王祖波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
销售线索创建时间排序
parent
56b84f22
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletions
+24
-1
InteractRecordQDTO.java
...aoban/manage/api/dto/qdto/content/InteractRecordQDTO.java
+13
-0
InteractRecordQO.java
...oban/manage/service/pojo/qo/content/InteractRecordQO.java
+5
-0
TabHaobanInteractRecordMapper.xml
...esources/mapper/content/TabHaobanInteractRecordMapper.xml
+6
-1
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/dto/qdto/content/InteractRecordQDTO.java
View file @
121169fd
...
...
@@ -50,6 +50,11 @@ public class InteractRecordQDTO extends BasePageInfo {
private
Integer
filterNull
;
/**
* 排序字段
*/
private
String
orderBy
;
/**
* 开始时间-创建时间
*/
private
Date
startTime
;
...
...
@@ -116,6 +121,14 @@ public class InteractRecordQDTO extends BasePageInfo {
this
.
filterNull
=
filterNull
;
}
public
String
getOrderBy
()
{
return
orderBy
;
}
public
void
setOrderBy
(
String
orderBy
)
{
this
.
orderBy
=
orderBy
;
}
public
Date
getStartTime
()
{
return
startTime
;
}
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/pojo/qo/content/InteractRecordQO.java
View file @
121169fd
...
...
@@ -53,6 +53,11 @@ public class InteractRecordQO extends BasePageInfo {
private
Integer
filterNull
;
/**
* 排序字段
*/
private
String
orderBy
;
/**
* 线索来源
* @see com.gic.haoban.manage.api.enums.content.InteractRecordChannelSourceType
*/
...
...
haoban-manage3-service/src/main/resources/mapper/content/TabHaobanInteractRecordMapper.xml
View file @
121169fd
...
...
@@ -329,7 +329,12 @@
</foreach>
</if>
</where>
order by last_access_time desc, id desc
<if
test=
"orderBy != null and orderBy != ''"
>
ORDER BY ${orderBy} DESC,id DESC
</if>
<if
test=
"orderBy == null or orderBy == ''"
>
ORDER BY last_access_time DESC, id DESC
</if>
</select>
<select
id=
"staticsClerkInteractRecordNew"
resultType=
"com.gic.haoban.manage.service.pojo.bo.content.PotentialCustomerStaticsBO"
>
...
...
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