Commit 4c0feea9 by xugaojun

触发好有关联,逻辑变更, 代码优化,api变更

parent 30f78c71
...@@ -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);
} }
......
...@@ -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 + '\'' +
'}';
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment