代码生成:主子表(inner)部分模版

This commit is contained in:
YunaiV
2023-11-13 13:57:31 +08:00
parent a4b1395e92
commit 90842542a9
22 changed files with 1134 additions and 13 deletions

View File

@ -57,7 +57,10 @@ public interface ErrorCodeConstants {
// ========== 学生CodegenTemplateTypeEnum.ONE 示例) 1-001-201-000 ==========
ErrorCode DEMO01_STUDENT_NOT_EXISTS = new ErrorCode(1_001_200_000, "学生不存在");
// ========== 学生CodegenTemplateTypeEnum.ONE 示例) 1-001-211-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, "学生不存在");
}