Commit 4c0feea9 by xugaojun

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

parent 30f78c71
......@@ -396,18 +396,17 @@ public class EnterpriseController extends WebBaseController {
}
/**
* desc: 发送存量会员关联消息
* desc: 发送会员关联消息
*
* @param wxEnterpriseId 微信企业id
* @param content 文本内容
* @return : {@link HaobanResponse}
* @author : YongEn
* @date : 2022/2/17
*/
@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);
}
......
......@@ -23,8 +23,6 @@ public class MemberUnionRelatedBO implements Serializable {
private String staffId;
private String content;
public String getCorpid() {
return corpid;
}
......@@ -73,11 +71,15 @@ public class MemberUnionRelatedBO implements Serializable {
this.staffId = staffId;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
@Override
public String toString() {
return "MemberUnionRelatedBO{" +
"corpid='" + corpid + '\'' +
", wxEnterpriseId='" + wxEnterpriseId + '\'' +
", 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