Commit f4d2aaa1 by 徐高华

画布-群发

parent c1af61a7
......@@ -3,6 +3,7 @@ package com.gic.haoban.manage.api.service;
import com.gic.api.base.commons.JSONResponse;
import com.gic.haoban.base.api.common.ServiceResponse;
import com.gic.haoban.manage.api.dto.*;
import com.gic.haoban.manage.api.qdto.CanvasInfoQDTO;
import java.util.List;
......@@ -83,6 +84,9 @@ public interface MemberUnionidRelatedApiService {
JSONResponse sendMessageShare(String wxEnterpriseId, String staffId, List<String> extendUserList, String message ,List<ContentMaterialDTO> imgList);
JSONResponse sendMessage(String wxEnterpriseId, String staffId, List<String> extendUserList,
String message , List<ContentMaterialDTO> imageList, String planId , CanvasInfoQDTO canvas) ;
/**
* 创建企业群发, 支出素材批量发送
*
......
......@@ -5,6 +5,7 @@ import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
import com.gic.haoban.manage.api.enums.NoticeMessageTypeEnum;
import com.gic.haoban.manage.api.qdto.CanvasInfoQDTO;
import com.gic.haoban.manage.api.util.notify.NoticeMessageUtil;
import com.gic.haoban.manage.service.pojo.GicNewMemberBO;
import com.gic.haoban.manage.service.service.*;
......@@ -1246,6 +1247,12 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
}
@Override
public JSONResponse sendMessage(String wxEnterpriseId, String staffId, List<String> extendUserList, String message, List<ContentMaterialDTO> imageList, String planId, CanvasInfoQDTO canvas) {
com.gic.api.base.commons.ServiceResponse<String> resp = this.qywxSendService.sendMessage(wxEnterpriseId, staffId, extendUserList, imageList, message,planId,canvas) ;
return this.retJson(resp) ;
}
@Override
public JSONResponse share(String wxEnterpriseId, List<String> clerkIdList, String message,
List<ContentMaterialDTO> imgList) {
com.gic.api.base.commons.ServiceResponse<String> resp = this.qywxSendService.share(wxEnterpriseId, clerkIdList, message, imgList) ;
......
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