代码生成:增加主子表的示例

This commit is contained in:
YunaiV
2023-11-12 22:33:18 +08:00
parent e67a6a2fe9
commit 256c560d43
24 changed files with 1224 additions and 156 deletions

View File

@ -54,6 +54,10 @@ public interface ErrorCodeConstants {
// ========== 数据源配置 1-001-107-000 ==========
ErrorCode DEMO_STUDENT_NOT_EXISTS = new ErrorCode(1_001_107_000, "学生不存在");
// ========== 学生CodegenTemplateTypeEnum.ONE 示例) 1-001-200-000 ==========
// ========== 学生CodegenTemplateTypeEnum.ONE 示例) 1-001-201-000 ==========
ErrorCode DEMO01_STUDENT_NOT_EXISTS = new ErrorCode(1_001_200_000, "学生不存在");
// ========== 学生CodegenTemplateTypeEnum.ONE 示例) 1-001-211-000 ==========
ErrorCode DEMO11_STUDENT_NOT_EXISTS = new ErrorCode(1_001_211_000, "学生不存在");
}