fix(config): 修复配置文件加载和用户查询参数映射问题

(cherry picked from commit 9673af71a3)
dev_human_push
zhaokai 2026-06-29 13:57:59 +08:00
parent bb30e51267
commit 627f41e68e
1 changed files with 2 additions and 2 deletions

View File

@ -209,8 +209,8 @@ public class UserRepositoryImpl extends BaseRepositoryImpl<UserMapper, UserDO> i
// List<Long> ids = new ArrayList<>(); // List<Long> ids = new ArrayList<>();
// ids.add(1999009782763397120L); // ids.add(1999009782763397120L);
// Map<Long, String> sd1 = zcloudDepartmentFacade.listFullName(ids); // Map<Long, String> sd1 = zcloudDepartmentFacade.listFullName(ids);
if (!ObjectUtils.isEmpty(params.get("eqEmploymentFlag"))) { if (!ObjectUtils.isEmpty(params.get("employmentFlag"))) {
params.put("employmentFlag", params.get("eqEmploymentFlag")); params.put("employmentFlag", params.get("employmentFlag"));
} }
if (!ObjectUtils.isEmpty(params.get("isMyCorp"))) { if (!ObjectUtils.isEmpty(params.get("isMyCorp"))) {
SSOUser ssoUser = AuthContext.getCurrentUser(); SSOUser ssoUser = AuthContext.getCurrentUser();