Commit ec5c0095 by 徐高华

客户群

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