chenbiao 2 lat temu
rodzic
commit
84cbc616ac

+ 1 - 1
netflix-dao/src/main/java/com/cyksj/model/manage/views/CorpQyMsgAuditChatView.java

@@ -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

+ 0 - 1
netflix-web/src/main/java/com/cyksj/web/controller/manage/corp/WxCorpController.java

@@ -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(",")))