diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml index 07132dbd..c0ae3a9e 100644 --- a/Tiobon.Core.Api/Tiobon.Core.Model.xml +++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml @@ -7300,6 +7300,11 @@ 结果有效期 + + + 重复类型 + + 必选修规则结果 (Dto.Base) @@ -23086,6 +23091,11 @@ 结果有效期 + + + 重复类型 + + 必选修规则结果 (Model) diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs index c982ff22..fac07498 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/2/24 14:16:24 SimonHsiao 初版 +*V0.01 2025/3/25 11:14:28 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -194,4 +194,10 @@ public class Ghre_StudyRuleBase /// 结果有效期 /// public int? ResultValidPeriod { get; set; } + + /// + /// 重复类型 + /// + [Display(Name = "DuplicateType"), Description("重复类型"), MaxLength(32, ErrorMessage = "重复类型 不能超过 32 个字符")] + public string DuplicateType { get; set; } } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs index edcac1e9..f1fa0c80 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/2/24 14:16:24 SimonHsiao 初版 +*V0.01 2025/3/25 11:14:28 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -195,4 +195,10 @@ public class Ghre_StudyRule : BasePoco /// 结果有效期 /// public int? ResultValidPeriod { get; set; } + + /// + /// 重复类型 + /// + [Display(Name = "DuplicateType"), Description("重复类型"), MaxLength(32, ErrorMessage = "重复类型 不能超过 32 个字符")] + public string DuplicateType { get; set; } }