mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-23 07:41:53 +08:00
定义ai模块错误码
This commit is contained in:
parent
33d77b9b16
commit
f4b3bb5aaa
@ -43,4 +43,6 @@ public class ServiceErrorCodeRange {
|
|||||||
|
|
||||||
// 模块 crm 错误码区间 [1-020-000-000 ~ 1-021-000-000)
|
// 模块 crm 错误码区间 [1-020-000-000 ~ 1-021-000-000)
|
||||||
|
|
||||||
|
// 模块 ai 错误码区间 [1-022-000-000 ~ 1-023-000-000)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.iocoder.yudao.module.ai;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.exception.ErrorCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* System 错误码枚举类
|
||||||
|
*
|
||||||
|
* system 系统,使用 1-002-000-000 段
|
||||||
|
*/
|
||||||
|
public interface ErrorCodeConstants {
|
||||||
|
|
||||||
|
// ========== 模块 ai 错误码区间 [1-022-000-000 ~ 1-023-000-000) ==========
|
||||||
|
|
||||||
|
ErrorCode AI_MODULE_NOT_SUPPORTED = new ErrorCode(1_022_000_000, "AI模型暂不支持!");
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user