zoujiajian před 2 roky
rodič
revize
c853df31af

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

@@ -80,7 +80,7 @@ public class CorpMsgAuditController {
             builder.put("tagTable", ",corp_user_tag t");
         }
         //管理员
-        if (adminId == 78l) {
+        if (adminId == 75l) {
             builder.put("tagTable", ",corp_user_tag t");
             builder.put("tag", String.format("and cr.id = t.relation_id and t.tag_id =  'etvj2DPQAAxqh9QlGJG4N1EbdQBNYGAA'"));
         }

+ 2 - 1
netflix-web/src/main/java/com/cyksj/web/controller/manage/corp/CorpTagController.java

@@ -124,7 +124,8 @@ public class CorpTagController {
 	public Result<Page<CorpTagBackView>> getCorpTagBackView(@RequestParam(defaultValue = "0") Integer start, @RequestParam(defaultValue = "10") Integer limit, @RequestParam(required = false, defaultValue = "1") Integer type, String name, String[] groupIds, String sort, String order, String tagIdStr) throws Exception {
 		Long adminId = StpUtil.getLoginIdAsLong();
 		//指定管理员可查看标签
-		if (adminId == 78l) {
+		//马慧文
+		if (adminId == 75l) {
 			tagIdStr = "etvj2DPQAAxqh9QlGJG4N1EbdQBNYGAA";
 		}
 		Page<CorpTagBackView> corpTagBackViews = corpTagService.getCorpTagBackView(start, limit, type, name, groupIds, sort, order, tagIdStr);