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
2a55aff2
Commit
2a55aff2
authored
Apr 19, 2024
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
16a26998
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
+30
-0
GroupChatService.java
.../haoban/manage/service/service/chat/GroupChatService.java
+3
-0
GroupChatServiceImpl.java
...anage/service/service/chat/impl/GroupChatServiceImpl.java
+27
-0
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/chat/GroupChatService.java
View file @
2a55aff2
...
...
@@ -165,4 +165,6 @@ public interface GroupChatService {
*/
public
ServiceResponse
<
Void
>
initStaffGroupChat
(
String
staffId
)
;
public
void
repairOwner
()
;
}
\ No newline at end of file
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/chat/impl/GroupChatServiceImpl.java
View file @
2a55aff2
...
...
@@ -12,6 +12,7 @@ import java.util.stream.Collectors;
import
com.gic.enterprise.api.dto.StoreDTO
;
import
com.gic.enterprise.api.service.StoreService
;
import
com.gic.haoban.manage.service.dao.mapper.WxEnterpriseMapper
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.slf4j.Logger
;
...
...
@@ -126,6 +127,8 @@ public class GroupChatServiceImpl implements GroupChatService {
private
GroupChatInitMapper
groupChatInitMapper
;
@Autowired
private
StoreService
storeService
;
@Autowired
private
WxEnterpriseMapper
wxEnterpriseMapper
;
private
static
GicMQClient
mqClient
=
GICMQClientUtil
.
getClientInstance
();
...
...
@@ -1215,4 +1218,27 @@ public class GroupChatServiceImpl implements GroupChatService {
this
.
syncGroupChatList
(
qwDTO
,
Arrays
.
asList
(
userId
),
null
,
true
);
return
null
;
}
@Override
public
void
repairOwner
()
{
List
<
TabHaobanWxEnterprise
>
wxEnterpriseList
=
this
.
wxEnterpriseMapper
.
listByIds
(
null
);
for
(
TabHaobanWxEnterprise
item
:
wxEnterpriseList
)
{
int
pageNum
=
0
;
if
(
item
.
getWxSecurityType
()
<=
0
)
{
continue
;
}
while
(
true
)
{
List
<
GroupChatOwnerDTO
>
list
=
this
.
groupChatOwnerMapper
.
listOwnerForStatistic
(
item
.
getWxEnterpriseId
(),
pageNum
*
pageSize
,
pageSize
);
if
(
CollectionUtils
.
isEmpty
(
list
))
{
logger
.
info
(
"无群主记录,不处理,wxeid={}"
,
item
.
getWxEnterpriseId
());
break
;
}
pageNum
++;
for
(
GroupChatOwnerDTO
dto
:
list
)
{
this
.
updateOwnerCount
(
dto
.
getStaffId
());
}
}
}
}
}
\ No newline at end of file
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