chenbiao 2 years ago
parent
commit
00fdff2a95

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

@@ -39,12 +39,12 @@ public class CorpQyMsgAuditChatView {
     /**
      * 成员名称
      */
-    @DbField("f.name")
+    @DbField("cf.name")
     private String followName;
 
     /**
      * 成员头像
      */
-    @DbField("f.avatar")
+    @DbField("cf.avatar")
     private String followAvatar;
 }

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