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
4c0feea9
Commit
4c0feea9
authored
Feb 18, 2022
by
xugaojun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
触发好有关联,逻辑变更, 代码优化,api变更
parent
30f78c71
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
78 additions
and
79 deletions
+78
-79
EnterpriseController.java
...ic/haoban/manage/web/controller/EnterpriseController.java
+3
-4
AddMemberUnionRelateConsumerProcessor.java
...e/mq/processor/AddMemberUnionRelateConsumerProcessor.java
+65
-67
MemberUnionRelatedBO.java
...c/haoban/manage/service/pojo/bo/MemberUnionRelatedBO.java
+10
-8
No files found.
haoban-manage3-operation-web/src/main/java/com/gic/haoban/manage/web/controller/EnterpriseController.java
View file @
4c0feea9
...
@@ -396,18 +396,17 @@ public class EnterpriseController extends WebBaseController {
...
@@ -396,18 +396,17 @@ public class EnterpriseController extends WebBaseController {
}
}
/**
/**
* desc: 发送
存量
会员关联消息
* desc: 发送会员关联消息
*
*
* @param wxEnterpriseId 微信企业id
* @param wxEnterpriseId 微信企业id
* @param content 文本内容
* @return : {@link HaobanResponse}
* @return : {@link HaobanResponse}
* @author : YongEn
* @author : YongEn
* @date : 2022/2/17
* @date : 2022/2/17
*/
*/
@RequestMapping
(
"/send-stock-member-relation-message"
)
@RequestMapping
(
"/send-stock-member-relation-message"
)
public
HaobanResponse
sendMass
(
String
wxEnterpriseId
,
String
content
)
{
public
HaobanResponse
sendMass
(
String
wxEnterpriseId
)
{
// 异步调用
// 异步调用
groupSendOperateApiService
.
sendStockMemberRelationMessage
(
wxEnterpriseId
,
content
);
groupSendOperateApiService
.
sendStockMemberRelationMessage
(
wxEnterpriseId
);
return
resultResponse
(
HaoBanErrCode
.
ERR_1
);
return
resultResponse
(
HaoBanErrCode
.
ERR_1
);
}
}
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/mq/processor/AddMemberUnionRelateConsumerProcessor.java
View file @
4c0feea9
This diff is collapsed.
Click to expand it.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/pojo/bo/MemberUnionRelatedBO.java
View file @
4c0feea9
...
@@ -23,8 +23,6 @@ public class MemberUnionRelatedBO implements Serializable {
...
@@ -23,8 +23,6 @@ public class MemberUnionRelatedBO implements Serializable {
private
String
staffId
;
private
String
staffId
;
private
String
content
;
public
String
getCorpid
()
{
public
String
getCorpid
()
{
return
corpid
;
return
corpid
;
}
}
...
@@ -73,11 +71,15 @@ public class MemberUnionRelatedBO implements Serializable {
...
@@ -73,11 +71,15 @@ public class MemberUnionRelatedBO implements Serializable {
this
.
staffId
=
staffId
;
this
.
staffId
=
staffId
;
}
}
public
String
getContent
()
{
@Override
return
content
;
public
String
toString
()
{
}
return
"MemberUnionRelatedBO{"
+
"corpid='"
+
corpid
+
'\''
+
public
void
setContent
(
String
content
)
{
", wxEnterpriseId='"
+
wxEnterpriseId
+
'\''
+
this
.
content
=
content
;
", externalUserid='"
+
externalUserid
+
'\''
+
", wxUserId='"
+
wxUserId
+
'\''
+
", secret='"
+
secret
+
'\''
+
", staffId='"
+
staffId
+
'\''
+
'}'
;
}
}
}
}
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