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
8842516e
Commit
8842516e
authored
Mar 24, 2025
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
朋友圈
parent
2d589b8f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
GroupChatPlanController.java
...manage/web/controller/haoban/GroupChatPlanController.java
+13
-3
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/haoban/GroupChatPlanController.java
View file @
8842516e
...
...
@@ -7,6 +7,7 @@ import java.util.List;
import
java.util.Map
;
import
java.util.stream.Collectors
;
import
com.gic.commons.util.DateUtil
;
import
com.gic.haoban.manage.api.dto.CommonMQDTO
;
import
com.gic.haoban.manage.api.dto.chat.*
;
import
com.gic.haoban.manage.api.dto.qdto.chat.GroupChatSearchQDTO
;
...
...
@@ -62,7 +63,7 @@ public class GroupChatPlanController {
@RequestMapping
(
"total-list"
)
public
RestResponse
<
Page
<
ChatOwnerTotalDTO
>>
totalList
(
String
clerkId
,
String
wxEnterpriseId
,
String
enterpriseId
,
String
searchParams
,
BasePageInfo
basePageInfo
,
@RequestParam
(
defaultValue
=
"1"
)
int
clerkTaskStatus
,
String
storeId
,
Date
startDate
,
Date
endDate
)
{
String
startDate
,
String
endDate
)
{
if
(
StringUtils
.
isEmpty
(
clerkId
))
{
return
RestResponse
.
failure
(
"1"
,
"clerkId为空"
);
}
...
...
@@ -74,8 +75,17 @@ public class GroupChatPlanController {
if
(
StringUtils
.
isNotBlank
(
searchParams
))
{
qdto
.
setSearchParams
(
"%"
+
searchParams
+
"%"
);
}
qdto
.
setStartDate
(
startDate
);
qdto
.
setEndDate
(
endDate
);
Date
_startDate
=
null
;
Date
_endDate
=
null
;
if
(
null
!=
startDate
)
{
_startDate
=
DateUtil
.
strToDate
(
startDate
,
"yyyy-MM-dd"
)
;
}
if
(
null
!=
endDate
)
{
_endDate
=
DateUtil
.
strToDate
(
endDate
,
"yyyy-MM-dd"
)
;
_endDate
=
DateUtil
.
getEndTimeOfDay
(
_endDate
)
;
}
qdto
.
setStartDate
(
_startDate
);
qdto
.
setEndDate
(
_endDate
);
qdto
.
setClerkTaskStatus
(
clerkTaskStatus
);
ServiceResponse
<
Page
<
ChatOwnerTotalDTO
>>
pageResp
=
this
.
groupChatPlanApiService
.
listOwnerLogPageForWxaTotal
(
qdto
,
basePageInfo
);
...
...
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