初始化项目提交

This commit is contained in:
chenbowen
2025-09-04 10:11:48 +08:00
parent 05ddfd8691
commit 922f59b918
34 changed files with 2512 additions and 93 deletions

View File

@@ -0,0 +1,17 @@
package cn.iocoder.yudao.module.base.enums;
import cn.iocoder.yudao.framework.common.exception.ErrorCode;
/**
* base 错误码枚举类
*
* base 系统,使用 1-xxx-xxx-xxx 段
*
* @author ZT
*/
public interface ErrorCodeConstants {
// ========== 示例模块 1-001-000-000 ==========
ErrorCode EXAMPLE_NOT_EXISTS = new ErrorCode(1_001_000_001, "示例不存在");
}