|
|
|
@@ -1,5 +1,6 @@ |
|
|
|
package com.simple.service.impl; |
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.github.pagehelper.PageHelper; |
|
|
|
import com.github.pagehelper.PageInfo; |
|
|
|
@@ -122,7 +123,7 @@ public class WxMsgServiceImpl implements WxMsgService { |
|
|
|
for (int i = 0; i < arys.length; i++) { |
|
|
|
tagids.add(Long.parseLong(arys[i])); |
|
|
|
} |
|
|
|
List<Long> userIds = wxCUserTagsMapper.findUserByTag(tagids); |
|
|
|
List<Long> userIds = wxCUserTagsMapper.findUserByTag(JSON.toJSONString(tagids)); |
|
|
|
if(userIds.size()==0) { |
|
|
|
return ""; |
|
|
|
} |
|
|
|
|