From 8c65ecfa669e49dc125622f051e369dce025aaef Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Tue, 25 Mar 2025 11:17:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BF=85=E4=BF=AE=E8=A7=84=E5=88=99=E7=9A=84?= =?UTF-8?q?=E8=AE=BE=E5=AE=9A=E4=B8=AD=E5=A2=9E=E5=8A=A0=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E5=9B=9E=E6=BB=9A=E7=9A=84=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Api/Tiobon.Core.Model.xml | 10 ++++++++++ Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs | 8 +++++++- Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs | 8 +++++++- 3 files changed, 24 insertions(+), 2 deletions(-) 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; } }