add:第一版测试版本功能优化。1.F机器人修改调度上报异常信息,后端存储异常信息和异常处理,增加异常信息和异常处理方法excel导入功能。2.添加密码校验、修改密码功能。
This commit is contained in:
@@ -9,8 +9,8 @@ import com.alibaba.fastjson.JSONObject;
|
||||
public interface SettingAPI {
|
||||
|
||||
/**
|
||||
* 根据设置编号查询设置参数是否启用
|
||||
* 根据设置编号查询
|
||||
* @return
|
||||
*/
|
||||
JSONObject querySttingParamIsActiveByCode(String setting_code);
|
||||
JSONObject querySettingParamByCode(String setting_code);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user