add 企微通知

This commit is contained in:
shuo.wang
2025-02-17 11:04:42 +08:00
parent 5e7351fbfa
commit f78fddf06f
15 changed files with 255 additions and 77 deletions

View File

@@ -106,7 +106,13 @@ public class PCTestController {
public ResponseResult<Boolean> testQWMessage(){
List<String> userIds = new ArrayList<>();
userIds.add("wpayJeDAAAhGIFgUJpJN-zg39JuNbYhg_woayJeDAAA52Wm6ZigyveSjniyimeqZQ");
commonService.sendQWMessage(userIds, QWMessageEnum.MESSAGE_1, new HashMap<>());
HashMap<String, String> map = new HashMap<>();
map.put("partnerUsername","sx");
map.put("partnerMobile","13563273279");
commonService.sendQWMessage(userIds,
MessageEnum.MESSAGE_14,
map);
return ResponseResult.success(Boolean.TRUE);
}
}