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
e4f65d52
Commit
e4f65d52
authored
Nov 06, 2023
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
群数据排序
parent
df6ca233
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletions
+20
-1
ChatDataSearchQDTO.java
...c/haoban/manage/api/dto/qdto/chat/ChatDataSearchQDTO.java
+19
-0
GroupChatDataMapper.xml
...ce/src/main/resources/mapper/chat/GroupChatDataMapper.xml
+1
-1
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/dto/qdto/chat/ChatDataSearchQDTO.java
View file @
e4f65d52
...
...
@@ -15,6 +15,25 @@ public class ChatDataSearchQDTO extends PageQo implements Serializable {
private
Date
endDate
;
private
List
<
String
>
staffIdList
;
private
String
sortType
=
"desc"
;
private
String
sortColumn
=
"memberTotal"
;
public
String
getSortType
()
{
return
sortType
;
}
public
void
setSortType
(
String
sortType
)
{
this
.
sortType
=
sortType
;
}
public
String
getSortColumn
()
{
return
sortColumn
;
}
public
void
setSortColumn
(
String
sortColumn
)
{
this
.
sortColumn
=
sortColumn
;
}
public
String
getWxEnterpriseId
()
{
return
wxEnterpriseId
;
}
...
...
haoban-manage3-service/src/main/resources/mapper/chat/GroupChatDataMapper.xml
View file @
e4f65d52
...
...
@@ -147,7 +147,7 @@
</foreach>
</if>
ORDER BY a.date DESC
) tb GROUP BY staffId
) tb GROUP BY staffId
ORDER BY ${sortColumn} ${sortType}
</select>
...
...
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