Commit 932cfd24 by 徐高华

/

parent 794df178
...@@ -52,7 +52,7 @@ import com.gic.weimob.common.Md5Util; ...@@ -52,7 +52,7 @@ import com.gic.weimob.common.Md5Util;
* @date 2022年11月8日 下午2:39:10 * @date 2022年11月8日 下午2:39:10
* *
*/ */
@Service("qywxSendService") @Service
public class QywxSendServiceImpl implements QywxSendService { public class QywxSendServiceImpl implements QywxSendService {
private static final Logger log = LogManager.getLogger(QywxSendServiceImpl.class); private static final Logger log = LogManager.getLogger(QywxSendServiceImpl.class);
...@@ -74,13 +74,14 @@ public class QywxSendServiceImpl implements QywxSendService { ...@@ -74,13 +74,14 @@ public class QywxSendServiceImpl implements QywxSendService {
@Autowired @Autowired
private TabHaobanStaffClerkRelationMapper tabHaobanStaffClerkRelationMapper; private TabHaobanStaffClerkRelationMapper tabHaobanStaffClerkRelationMapper;
@Autowired
@Override
public ServiceResponse<String> sendMessage(String wxEnterpriseId, String staffId, List<String> extendUserList, public ServiceResponse<String> sendMessage(String wxEnterpriseId, String staffId, List<String> extendUserList,
List<String> materialIdList) { List<String> materialIdList) {
return this.send(wxEnterpriseId, staffId, extendUserList, materialIdList, null, 1); return this.send(wxEnterpriseId, staffId, extendUserList, materialIdList, null, 1);
} }
@Autowired @Override
public ServiceResponse<String> sendMessageShare(String wxEnterpriseId, String staffId, List<String> extendUserList, public ServiceResponse<String> sendMessageShare(String wxEnterpriseId, String staffId, List<String> extendUserList,
List<ContentMaterialDTO> imageList, String message) { List<ContentMaterialDTO> imageList, String message) {
List<String> materialIdList = this.getImageMediaId(wxEnterpriseId, imageList, 1); List<String> materialIdList = this.getImageMediaId(wxEnterpriseId, imageList, 1);
...@@ -146,7 +147,7 @@ public class QywxSendServiceImpl implements QywxSendService { ...@@ -146,7 +147,7 @@ public class QywxSendServiceImpl implements QywxSendService {
} }
// 分享朋友圈 // 分享朋友圈
@Autowired @Override
public ServiceResponse<String> share(String wxEnterpriseId, List<String> clerkIdList, String message, public ServiceResponse<String> share(String wxEnterpriseId, List<String> clerkIdList, String message,
List<ContentMaterialDTO> imageList) { List<ContentMaterialDTO> imageList) {
WxEnterpriseQwDTO qwDTO = this.wxEnterpriseService.getQwInfo(wxEnterpriseId); WxEnterpriseQwDTO qwDTO = this.wxEnterpriseService.getQwInfo(wxEnterpriseId);
......
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