Commit 5cbd1be1 by 徐高华

企微托管

parent 8339c293
......@@ -87,6 +87,12 @@ public class QywxCallbackController extends WebBaseController {
private void chat(String uuid, JSONObject json) {
int msgtype = json.getIntValue("msgtype") ;
// 群发任务
if(msgtype==573) {
json.put("uuid",uuid);
this.openQwApiService.saveNotice(json.toJSONString());
return ;
}
List<String> msgList = Arrays.asList("0","2","101") ;
if(!msgList.contains(msgtype+"")) {
logger.info("不处理的消息");
......
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