add:第一版测试版本功能优化。1.F机器人修改调度上报异常信息,后端存储异常信息和异常处理,增加异常信息和异常处理方法excel导入功能。2.添加密码校验、修改密码功能。

This commit is contained in:
2026-01-04 09:34:07 +08:00
parent 6e554b6bf7
commit acf269e92a
33 changed files with 1089 additions and 9 deletions

View File

@@ -9,8 +9,8 @@ import com.alibaba.fastjson.JSONObject;
public interface SettingAPI {
/**
* 根据设置编号查询设置参数是否启用
* 根据设置编号查询
* @return
*/
JSONObject querySttingParamIsActiveByCode(String setting_code);
JSONObject querySettingParamByCode(String setting_code);
}

View File

@@ -0,0 +1,17 @@
package org.nl.api.sys.anomalyInfo.api;
import com.alibaba.fastjson.JSONObject;
/**
* @author dsh
* 2025/12/30
*/
public interface ErrorInfoAPI {
/**
* 根据异常码查询异常信息
* @param code
* @return
*/
JSONObject queryErrorInfoByCode(Integer code);
}