完成责任量化功能

This commit is contained in:
2023-07-26 11:20:12 +08:00
parent ae00d7671d
commit c3f8592160
104 changed files with 4709 additions and 1670 deletions

View File

@@ -27,6 +27,11 @@ public interface OssPath {
*/
String ALGORITHM="algorithm/";
/***
* 装置模板
*/
String DEV_MODEL = "algorithm/devModel/";
/***
* process模块中干扰源入网报告的上传路径
*/
@@ -63,10 +68,6 @@ public interface OssPath {
*/
String EDDATA = "edData/";
/***
* 装置模板
*/
String DEV_MODEL = "algorithm/devModel/";
/***
* 资源管理文件
@@ -93,7 +94,15 @@ public interface OssPath {
*/
String WIRING_DIAGRAM = "wiringDiagram/";
/***
* 高级算法责任量化用采数据保存地址
*/
String RESPONSIBILITY_USER_DATA="advance/responsibility/userData/";
/***
* 高级算法责任量化结果数据保存地址
*/
String RESPONSIBILITY_USER_RESULT_DATA="advance/responsibility/userData/result/";
}

View File

@@ -15,7 +15,7 @@ public enum OssResponseEnum {
*/
UPLOAD_FILE_ERROR("A00551","上传文件服务器错误,请检查数据"),
DOWNLOAD_FILE_URL_ERROR("A00554","下载文件URL不存在请检查数据"),
DOWNLOAD_FILE_STREAM_ERROR("A00555","文件服务器下载文件流异常"),
DOWNLOAD_FILE_STREAM_ERROR("A00555","文件服务器下载文件流为空"),
DOWNLOAD_FILE_ERROR("A00556","文件服务器下载异常")
;