ref 修复单重构为调整单

This commit is contained in:
DaxPay
2024-07-15 19:09:22 +08:00
parent fc1b753afe
commit 42c706619b
53 changed files with 564 additions and 206 deletions

View File

@@ -6,33 +6,33 @@ package cn.bootx.platform.common.core.code;
public interface CommonErrorCode {
/** 系统错误 */
int SYSTEM_ERROR = 10001;
int SYSTEM_ERROR = 10501;
/** 认证失败 */
int AUTHENTICATION_FAIL = 10004;
int AUTHENTICATION_FAIL = 10401;
/** 参数处理失败 */
int PARSE_PARAMETERS_ERROR = 10005;
int PARSE_PARAMETERS_ERROR = 10505;
/** 参数验证失败 */
int VALIDATE_PARAMETERS_ERROR = 10006;
int VALIDATE_PARAMETERS_ERROR = 10506;
/** 重复操作异常 */
int REPETITIVE_OPERATION_ERROR = 10007;
int REPETITIVE_OPERATION_ERROR = 10507;
/** 数据过期 */
int DATA_OUT_OF_DATE = 10008;
int DATA_OUT_OF_DATE = 10508;
/** 不支持的下载 */
int UN_SUPPORTED_READ = 10009;
int UN_SUPPORTED_READ = 10416;
/** 数据不存在 */
int DATA_NOT_EXIST = 10010;
int DATA_NOT_EXIST = 10404;
/** 不支持的操作 */
int UN_SUPPORTED_OPERATE = 10011;
int UN_SUPPORTED_OPERATE = 10415;
/** 危险SQL异常, */
int DANGER_SQL = 10012;
int DANGER_SQL = 10512;
}