@@ -16,7 +16,7 @@ import lombok.Data;
where = "q.external_userid = cu.external_userid " +
" AND cu.corp_user_id = c.id " +
" AND q.follow_id = cf.userid " +
- "AND q.follow_id in (:followId:)",
+ "AND q.follow_id in (:followId:) ",
groupBy = "c.name,c.avatar,cu.external_userid ,cf.name,cf.avatar"
)
@Data
@@ -284,7 +284,6 @@ public class WxCorpController {
throw BusinessRuntimeException.getInstance("缺少必填参数.");
}
List<CorpQyMsgAuditChatView> search = beanSearcher.searchAll(CorpQyMsgAuditChatView.class, MapUtils.flatBuilder(request.getParameterMap())
- .field(CorpQyMsgAuditChatView::getExternalUserid, externalUserid)
.put("followId", followIds.stream()
.map(String::valueOf)
.collect(Collectors.joining(",")))