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
fd933965
Commit
fd933965
authored
Feb 12, 2025
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
画布
parent
86d68fa8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
StaffApiService.java
...va/com/gic/haoban/manage/api/service/StaffApiService.java
+3
-0
StaffApiServiceImpl.java
.../manage/service/service/out/impl/StaffApiServiceImpl.java
+5
-0
GroupChatPlanController.java
...manage/web/controller/haoban/GroupChatPlanController.java
+2
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/StaffApiService.java
View file @
fd933965
...
@@ -390,4 +390,7 @@ public interface StaffApiService {
...
@@ -390,4 +390,7 @@ public interface StaffApiService {
Page
<
StaffDTO
>
listByParams
(
String
enterpriseId
,
String
params
,
String
wxEnterpriseId
,
BasePageInfo
pageInfo
)
;
Page
<
StaffDTO
>
listByParams
(
String
enterpriseId
,
String
params
,
String
wxEnterpriseId
,
BasePageInfo
pageInfo
)
;
void
deleteStaff
(
String
enterpriseId
,
String
clerkId
)
;
}
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/StaffApiServiceImpl.java
View file @
fd933965
...
@@ -1543,4 +1543,9 @@ public class StaffApiServiceImpl implements StaffApiService {
...
@@ -1543,4 +1543,9 @@ public class StaffApiServiceImpl implements StaffApiService {
List
<
StaffDTO
>
pageList
=
this
.
staffMapper
.
listByParams
(
wxEnterpriseIdList
,
params
)
;
List
<
StaffDTO
>
pageList
=
this
.
staffMapper
.
listByParams
(
wxEnterpriseIdList
,
params
)
;
return
PageUtil
.
changePageHelperToCurrentPage
(
new
PageInfo
<>(
pageList
),
StaffDTO
.
class
);
return
PageUtil
.
changePageHelperToCurrentPage
(
new
PageInfo
<>(
pageList
),
StaffDTO
.
class
);
}
}
@Override
public
void
deleteStaff
(
String
enterpriseId
,
String
clerkId
)
{
}
}
}
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/haoban/GroupChatPlanController.java
View file @
fd933965
...
@@ -95,6 +95,7 @@ public class GroupChatPlanController {
...
@@ -95,6 +95,7 @@ public class GroupChatPlanController {
*/
*/
@RequestMapping
(
"staff-group-list"
)
@RequestMapping
(
"staff-group-list"
)
public
RestResponse
<
Page
<
GroupChatDTO
>>
staffGroupList
(
@RequestBody
GroupChatQO
qo
)
{
public
RestResponse
<
Page
<
GroupChatDTO
>>
staffGroupList
(
@RequestBody
GroupChatQO
qo
)
{
logger
.
info
(
"params={}"
,
JSONObject
.
toJSONString
(
qo
));
GroupChatSearchQDTO
qdto
=
new
GroupChatSearchQDTO
()
;
GroupChatSearchQDTO
qdto
=
new
GroupChatSearchQDTO
()
;
qdto
.
setWxEnterpriseId
(
qo
.
getWxEnterpriseId
());
qdto
.
setWxEnterpriseId
(
qo
.
getWxEnterpriseId
());
qdto
.
setStaffId
(
qo
.
getStaffId
());
qdto
.
setStaffId
(
qo
.
getStaffId
());
...
@@ -108,6 +109,7 @@ public class GroupChatPlanController {
...
@@ -108,6 +109,7 @@ public class GroupChatPlanController {
if
(
null
!=
owner
&&
owner
.
getSendStatus
()==
2
)
{
if
(
null
!=
owner
&&
owner
.
getSendStatus
()==
2
)
{
return
RestResponse
.
successResult
(
new
Page
<>())
;
return
RestResponse
.
successResult
(
new
Page
<>())
;
}
}
qdto
.
setStaffId
(
owner
.
getStaffId
());
}
}
ServiceResponse
<
Page
<
GroupChatDTO
>>
page
=
this
.
groupChatApiService
.
listPage
(
qdto
,
qo
);
ServiceResponse
<
Page
<
GroupChatDTO
>>
page
=
this
.
groupChatApiService
.
listPage
(
qdto
,
qo
);
return
RestResponse
.
successResult
(
page
.
getResult
());
return
RestResponse
.
successResult
(
page
.
getResult
());
...
...
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