教育训练处考试制证系统后端
heheng
2025-01-26 9481869e7c7af0db99a9f3df119c4812f5cdbdae
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);
        }