diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml index 70588199..986714db 100644 --- a/Tiobon.Core.Api/Tiobon.Core.Model.xml +++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml @@ -2905,6 +2905,11 @@ 课程分类 + + + 内置 + + 课程分类 (Dto.Base) @@ -2995,6 +3000,11 @@ 预留字段12 + + + 内置 + + 课程场景 (Dto.Base) @@ -3120,6 +3130,11 @@ 默认封面图Name + + + 内置 + + 课程列表 @@ -4070,21 +4085,11 @@ 封面图片URL - - - 封面图片背景 - - 试卷风格 - - - 出题方式 - - 状态 @@ -4160,6 +4165,21 @@ 预留字段12 + + + 出题方式 + + + + + 封面图片背景 + + + + + 内置 + + 试卷配置 (Dto.Base) @@ -6110,6 +6130,11 @@ 课程Ids + + + 内置 + + 题目答案 (Dto.Base) @@ -19647,6 +19672,11 @@ 课程分类 + + + 内置 + + 课程分类 (Model) @@ -19737,6 +19767,11 @@ 预留字段12 + + + 内置 + + 课程场景 (Model) @@ -19862,6 +19897,11 @@ 默认封面图Name + + + 内置 + + Ghre_CourseSnap (Model) @@ -20807,21 +20847,11 @@ 封面图片URL - - - 封面图片背景 - - 试卷风格 - - - 出题方式 - - 状态 @@ -20897,6 +20927,21 @@ 预留字段12 + + + 出题方式 + + + + + 封面图片背景 + + + + + 内置 + + 试卷配置 (Model) @@ -22827,6 +22872,11 @@ 课程Ids + + + 内置 + + 题目答案 (Model) diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_Course.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_Course.Dto.Base.cs index 263fda80..2754ae90 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_Course.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_Course.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/2/27 15:45:04 SimonHsiao 初版 +*V0.01 2025/4/7 14:23:49 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -274,4 +274,9 @@ public class Ghre_CourseBase /// 课程分类 /// public long? ClassId { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } } diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_CourseClass.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_CourseClass.Dto.Base.cs index eb7d0540..15aee182 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_CourseClass.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_CourseClass.Dto.Base.cs @@ -6,9 +6,9 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/28 11:07:38 SimonHsiao 初版 +*V0.01 2025/4/7 14:25:41 SimonHsiao 初版 * -* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. +* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ @@ -120,4 +120,9 @@ public class Ghre_CourseClassBase /// 预留字段12 /// public int? ReverseI2 { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } } diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_CourseScene.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_CourseScene.Dto.Base.cs index 56e7382e..0a881522 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_CourseScene.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_CourseScene.Dto.Base.cs @@ -6,9 +6,9 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/12/26 9:54:02 SimonHsiao 初版 +*V0.01 2025/4/7 14:23:41 SimonHsiao 初版 * -* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. +* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ @@ -161,6 +161,11 @@ public class Ghre_CourseSceneBase [Display(Name = "DefaultCoverImageName"), Description("默认封面图Name"), MaxLength(32, ErrorMessage = "默认封面图Name 不能超过 32 个字符")] public string DefaultCoverImageName { get; set; } + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } + /// /// 课程列表 /// diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_ExamPaper.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_ExamPaper.Dto.Base.cs index 660dded3..5c203a9c 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_ExamPaper.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_ExamPaper.Dto.Base.cs @@ -6,9 +6,9 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/29 11:50:29 SimonHsiao 初版 +*V0.01 2025/4/7 14:23:04 SimonHsiao 初版 * -* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. +* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ @@ -73,6 +73,7 @@ public class Ghre_ExamPaperBase /// 关联ID /// public long? LinkId { get; set; } + /// /// 关联次数 /// @@ -81,27 +82,15 @@ public class Ghre_ExamPaperBase /// /// 封面图片URL /// - [Display(Name = "CoverUrl"), Description("封面图片URL"), MaxLength(64, ErrorMessage = "封面图片URL 不能超过 64 个字符")] + [Display(Name = "CoverUrl"), Description("封面图片URL"), MaxLength(256, ErrorMessage = "封面图片URL 不能超过 256 个字符")] public string CoverUrl { get; set; } - /// - /// 封面图片背景 - /// - [Display(Name = "CoverBackGround"), Description("封面图片背景"), MaxLength(64, ErrorMessage = "封面图片背景 不能超过 64 个字符")] - public string CoverBackGround { get; set; } - /// /// 试卷风格 /// [Display(Name = "Style"), Description("试卷风格"), MaxLength(32, ErrorMessage = "试卷风格 不能超过 32 个字符")] public string Style { get; set; } - /// - /// 出题方式 - /// - [Display(Name = "SetMethod"), Description("关联类型"), MaxLength(32, ErrorMessage = "关联类型 不能超过 32 个字符")] - public string SetMethod { get; set; } - /// /// 状态 /// @@ -188,4 +177,21 @@ public class Ghre_ExamPaperBase /// 预留字段12 /// public int? ReverseI2 { get; set; } + + /// + /// 出题方式 + /// + [Display(Name = "SetMethod"), Description("出题方式"), MaxLength(32, ErrorMessage = "出题方式 不能超过 32 个字符")] + public string SetMethod { get; set; } + + /// + /// 封面图片背景 + /// + [Display(Name = "CoverBackGround"), Description("封面图片背景"), MaxLength(32, ErrorMessage = "封面图片背景 不能超过 32 个字符")] + public string CoverBackGround { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } } diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_Question.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_Question.Dto.Base.cs index 7587b4da..aafc0568 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_Question.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_Question.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/2/19 10:56:52 SimonHsiao 初版 +*V0.01 2025/4/7 14:23:25 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -144,4 +144,9 @@ public class Ghre_QuestionBase /// [Display(Name = "CourseIds"), Description("课程Ids"), MaxLength(2000, ErrorMessage = "课程Ids 不能超过 2000 个字符")] public string CourseIds { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_Course.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_Course.cs index b4539fd2..f0dba650 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_Course.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_Course.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/2/27 15:45:04 SimonHsiao 初版 +*V0.01 2025/4/7 14:23:49 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -275,4 +275,9 @@ public class Ghre_Course : BasePoco /// 课程分类 /// public long? ClassId { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_CourseClass.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_CourseClass.cs index 8623422b..2201d016 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_CourseClass.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_CourseClass.cs @@ -6,9 +6,9 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/28 11:07:38 SimonHsiao 初版 +*V0.01 2025/4/7 14:25:41 SimonHsiao 初版 * -* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. +* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ @@ -121,4 +121,9 @@ public class Ghre_CourseClass : BasePoco /// 预留字段12 /// public int? ReverseI2 { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_CourseScene.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_CourseScene.cs index 5973975e..5320f76e 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_CourseScene.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_CourseScene.cs @@ -6,9 +6,9 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/12/26 9:54:02 SimonHsiao 初版 +*V0.01 2025/4/7 14:23:41 SimonHsiao 初版 * -* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. +* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ @@ -161,4 +161,9 @@ public class Ghre_CourseScene : BasePoco /// [Display(Name = "DefaultCoverImageName"), Description("默认封面图Name"), MaxLength(32, ErrorMessage = "默认封面图Name 不能超过 32 个字符")] public string DefaultCoverImageName { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_ExamPaper.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_ExamPaper.cs index f01b34b3..177c152c 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_ExamPaper.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_ExamPaper.cs @@ -6,9 +6,9 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/4/29 11:50:29 SimonHsiao 初版 +*V0.01 2025/4/7 14:23:04 SimonHsiao 初版 * -* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. +* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ @@ -83,27 +83,15 @@ public class Ghre_ExamPaper : BasePoco /// /// 封面图片URL /// - [Display(Name = "CoverUrl"), Description("封面图片URL"), MaxLength(64, ErrorMessage = "封面图片URL 不能超过 64 个字符")] + [Display(Name = "CoverUrl"), Description("封面图片URL"), MaxLength(256, ErrorMessage = "封面图片URL 不能超过 256 个字符")] public string CoverUrl { get; set; } - /// - /// 封面图片背景 - /// - [Display(Name = "CoverBackGround"), Description("封面图片背景"), MaxLength(64, ErrorMessage = "封面图片背景 不能超过 64 个字符")] - public string CoverBackGround { get; set; } - /// /// 试卷风格 /// [Display(Name = "Style"), Description("试卷风格"), MaxLength(32, ErrorMessage = "试卷风格 不能超过 32 个字符")] public string Style { get; set; } - /// - /// 出题方式 - /// - [Display(Name = "SetMethod"), Description("关联类型"), MaxLength(32, ErrorMessage = "关联类型 不能超过 32 个字符")] - public string SetMethod { get; set; } - /// /// 状态 /// @@ -190,4 +178,21 @@ public class Ghre_ExamPaper : BasePoco /// 预留字段12 /// public int? ReverseI2 { get; set; } + + /// + /// 出题方式 + /// + [Display(Name = "SetMethod"), Description("出题方式"), MaxLength(32, ErrorMessage = "出题方式 不能超过 32 个字符")] + public string SetMethod { get; set; } + + /// + /// 封面图片背景 + /// + [Display(Name = "CoverBackGround"), Description("封面图片背景"), MaxLength(32, ErrorMessage = "封面图片背景 不能超过 32 个字符")] + public string CoverBackGround { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_Question.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_Question.cs index dbfb63d5..af1a34cc 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_Question.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_Question.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/2/19 10:56:52 SimonHsiao 初版 +*V0.01 2025/4/7 14:23:25 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -145,4 +145,9 @@ public class Ghre_Question : BasePoco /// [Display(Name = "CourseIds"), Description("课程Ids"), MaxLength(2000, ErrorMessage = "课程Ids 不能超过 2000 个字符")] public string CourseIds { get; set; } + + /// + /// 内置 + /// + public bool? BuiltIn { get; set; } }