|
|
@@ -29,6 +29,7 @@ import com.cyksj.service.corp.CorpService;
|
|
|
import com.cyksj.service.corp.CorpUserService;
|
|
|
import com.ejlchina.searcher.BeanSearcher;
|
|
|
import com.ejlchina.searcher.SearchResult;
|
|
|
+import com.ejlchina.searcher.param.Operator;
|
|
|
import com.ejlchina.searcher.util.MapUtils;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
@@ -284,9 +285,9 @@ public class WxCorpController {
|
|
|
throw BusinessRuntimeException.getInstance("缺少必填参数.");
|
|
|
}
|
|
|
List<CorpQyMsgAuditChatView> search = beanSearcher.searchAll(CorpQyMsgAuditChatView.class, MapUtils.flatBuilder(request.getParameterMap())
|
|
|
- .put("followId", followIds.stream()
|
|
|
+ .field("followId", followIds.stream()
|
|
|
.map(String::valueOf)
|
|
|
- .collect(Collectors.joining(",")))
|
|
|
+ .collect(Collectors.toList())).op(Operator.InList)
|
|
|
.build());
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(search);
|
|
|
}
|