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
203c41cf
Commit
203c41cf
authored
Mar 12, 2025
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
朋友圈
parent
15130647
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletions
+25
-1
GroupChatPlanController.java
...manage/web/controller/haoban/GroupChatPlanController.java
+4
-1
PlanListQO.java
.../java/com/gic/haoban/manage/web/qo/moment/PlanListQO.java
+21
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/haoban/GroupChatPlanController.java
View file @
203c41cf
...
...
@@ -61,7 +61,8 @@ 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
)
{
String
searchParams
,
BasePageInfo
basePageInfo
,
@RequestParam
(
defaultValue
=
"1"
)
int
clerkTaskStatus
,
String
storeId
,
Date
startDate
,
Date
endDate
)
{
if
(
StringUtils
.
isEmpty
(
clerkId
))
{
return
RestResponse
.
failure
(
"1"
,
"clerkId为空"
);
}
...
...
@@ -73,6 +74,8 @@ public class GroupChatPlanController {
if
(
StringUtils
.
isNotBlank
(
searchParams
))
{
qdto
.
setSearchParams
(
"%"
+
searchParams
+
"%"
);
}
qdto
.
setStartDate
(
startDate
);
qdto
.
setEndDate
(
endDate
);
qdto
.
setClerkTaskStatus
(
clerkTaskStatus
);
ServiceResponse
<
Page
<
ChatOwnerTotalDTO
>>
pageResp
=
this
.
groupChatPlanApiService
.
listOwnerLogPageForWxaTotal
(
qdto
,
basePageInfo
);
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/moment/PlanListQO.java
View file @
203c41cf
...
...
@@ -2,6 +2,8 @@ package com.gic.haoban.manage.web.qo.moment;
import
com.gic.api.base.commons.BasePageInfo
;
import
java.util.Date
;
public
class
PlanListQO
extends
BasePageInfo
{
private
String
wxEnterpriseId
;
...
...
@@ -20,6 +22,25 @@ public class PlanListQO extends BasePageInfo {
*/
private
String
name
;
private
Date
startDate
;
private
Date
endDate
;
public
Date
getStartDate
()
{
return
startDate
;
}
public
void
setStartDate
(
Date
startDate
)
{
this
.
startDate
=
startDate
;
}
public
Date
getEndDate
()
{
return
endDate
;
}
public
void
setEndDate
(
Date
endDate
)
{
this
.
endDate
=
endDate
;
}
public
String
getWxEnterpriseId
()
{
return
wxEnterpriseId
;
}
...
...
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