[测评系统]--测评系统核心代码库
zhijie
2022-09-20 6dbbdc7721daf018361a5044519380787d44fc15
导出修复
1个文件已修改
8 ■■■■ 已修改文件
src/main/java/com/ots/framework/config/EssConfig.java 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/ots/framework/config/EssConfig.java
@@ -77,18 +77,18 @@
    }
    
    public static String getAvatarPath() {
        return getProfile() + "/avatar";
        return getProfile() + "/avatar/";
    }
    
    public static String getDownloadPath() {
        return getProfile() + "/download";
        return getProfile() + "/download/";
    }
    
    public static String getUploadPath() {
        return getProfile() + "/upload";
        return getProfile() + "/upload/";
    }
    
    public static String getUploadImagePath() {
        return getProfile() + "/images";
        return getProfile() + "/images/";
    }
}