代码生成:增加 crud 单表示例

This commit is contained in:
YunaiV
2023-11-15 23:48:30 +08:00
parent d83e0413b8
commit 0d49691aa0
22 changed files with 381 additions and 592 deletions

View File

@ -58,13 +58,7 @@ public interface ErrorCodeConstants {
// ========== 数据源配置 1-001-107-000 ==========
ErrorCode DEMO_STUDENT_NOT_EXISTS = new ErrorCode(1_001_107_000, "学生不存在");
// ========== 学生CodegenTemplateTypeEnum.ONE 示例) 1-001-201-000 ==========
ErrorCode DEMO01_STUDENT_NOT_EXISTS = new ErrorCode(1_001_200_000, "学生不存在");
// ========== 学生CodegenTemplateTypeEnum.MASTER_NORMAL 示例) 1-001-211-000 ==========
ErrorCode DEMO11_STUDENT_NOT_EXISTS = new ErrorCode(1_001_211_000, "学生不存在");
// ========== 学生CodegenTemplateTypeEnum.MASTER_INNER 示例) 1-001-213-000 ==========
ErrorCode DEMO12_STUDENT_NOT_EXISTS = new ErrorCode(1_001_213_000, "学生不存在");
// ========== 学生 1-001-201-000 ==========
ErrorCode DEMO01_CONTACT_NOT_EXISTS = new ErrorCode(1_001_201_000, "示例联系人不存在");
}