Commit ec5c0095 by 徐高华

客户群

parent 43b498a2
......@@ -36,7 +36,7 @@ public interface QywxSendService {
* @return
* @throws
*/
public ServiceResponse<String> sendChatMessage(String wxEnterpriseId, String staffId, List<String> materialIdList);
public ServiceResponse<String> sendChatMessage(String wxEnterpriseId, String staffId, List<String> materialIdList, int planType ,String planId);
/**
* 群群发
......
......@@ -399,7 +399,7 @@ public class GroupChatPlanServiceImpl implements GroupChatPlanService {
String staffId = ownerLog.getStaffId();
if (plan.getMaterialFrom() == null || plan.getMaterialFrom() == 1) {
sendResp = qywxSendService.sendChatMessage(wxEnterpriseId, staffId,
sendIdList);
sendIdList,2,planId+"");
}else {
sendResp = qywxSendService.sendChatMessage(wxEnterpriseId, staffId,
materialList,message);
......
......@@ -244,8 +244,8 @@ public class QywxSendServiceImpl implements QywxSendService {
}
@Override
public ServiceResponse<String> sendChatMessage(String wxEnterpriseId, String staffId, List<String> materialIdList) {
return this.send(wxEnterpriseId, staffId, null, materialIdList, null, 1 , group,null,null);
public ServiceResponse<String> sendChatMessage(String wxEnterpriseId, String staffId, List<String> materialIdList,int planType ,String planId) {
return this.send(wxEnterpriseId, staffId, null, materialIdList, null, 1 , group,planId,planType);
}
@Override
......
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