教育训练处考试制证系统后端
heheng
2025-02-21 976fe8de4d45ccdd18cf988a36b9d71697d3bcc3
ruoyi-common/src/main/java/com/ruoyi/common/utils/SecurityUtils.java
@@ -40,7 +40,11 @@
     **/
    public static String getDeptDistrictCode() {
        try {
            return getLoginUser().getUser().getDept().getDistrictCode();
            if (getLoginUser().getUser().getDept() == null) {
                return "";
            }
            String districtCode = getLoginUser().getUser().getDept().getDistrictCode();
            return StringUtils.isEmpty(districtCode) ? "" : districtCode;
        } catch (Exception e) {
            throw new ServiceException("获取部门区域异常", HttpStatus.UNAUTHORIZED);
        }