修改SQL执行逻辑,解决一个sql中字段名重复取值混乱问题,优化SQL编辑器

This commit is contained in:
暮光:城中城
2023-02-15 20:35:34 +08:00
parent 6aec6ce8d6
commit 852727b3ad
9 changed files with 479 additions and 14126 deletions

View File

@@ -242,10 +242,12 @@ public class UserInfoController {
userAuth.setDelFlag(0);
createList.add(userAuth);
}
}
userAuthService.saveBatch(createList);
for (Long userId : userIdsList) {
List<UserAuthInfo> userAuthListNew = userAuthService.getUserAuthSet(userId);
DocUserUtil.setUserAuth(userId, userAuthListNew);
}
userAuthService.saveBatch(createList);
return DocResponseJson.ok();
}
}