Commit ff2e9fb2 by 徐高华

Merge branch 'xgh_内容中台' into 'developer'

/

See merge request !428
parents d749b0b2 794df178
......@@ -16,7 +16,7 @@ public interface QywxSendService {
/**
* 素材-分享
*/
public ServiceResponse<String> sendMessage(String wxEnterpriseId, String staffId, List<String> extendUserList,
public ServiceResponse<String> sendMessageShare(String wxEnterpriseId, String staffId, List<String> extendUserList,
List<ContentMaterialDTO> imageList, String message);
/**
......
......@@ -80,7 +80,8 @@ public class QywxSendServiceImpl implements QywxSendService {
return this.send(wxEnterpriseId, staffId, extendUserList, materialIdList, null, 1);
}
public ServiceResponse<String> sendMessage(String wxEnterpriseId, String staffId, List<String> extendUserList,
@Autowired
public ServiceResponse<String> sendMessageShare(String wxEnterpriseId, String staffId, List<String> extendUserList,
List<ContentMaterialDTO> imageList, String message) {
List<String> materialIdList = this.getImageMediaId(wxEnterpriseId, imageList, 1);
return this.send(wxEnterpriseId, staffId, extendUserList, materialIdList, message, 2);
......@@ -145,6 +146,7 @@ public class QywxSendServiceImpl implements QywxSendService {
}
// 分享朋友圈
@Autowired
public ServiceResponse<String> share(String wxEnterpriseId, List<String> clerkIdList, String message,
List<ContentMaterialDTO> imageList) {
WxEnterpriseQwDTO qwDTO = this.wxEnterpriseService.getQwInfo(wxEnterpriseId);
......
......@@ -1237,7 +1237,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
@Override
public JSONResponse sendMessageShare(String wxEnterpriseId, String staffId, List<String> extendUserList, String message,
List<ContentMaterialDTO> imgList) {
com.gic.api.base.commons.ServiceResponse<String> resp = this.qywxSendService.sendMessage(wxEnterpriseId, staffId, extendUserList, imgList, message) ;
com.gic.api.base.commons.ServiceResponse<String> resp = this.qywxSendService.sendMessageShare(wxEnterpriseId, staffId, extendUserList, imgList, message) ;
return this.retJson(resp) ;
}
......
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