From ebf0930e1181a2e990034e6d8882a8741367e169 Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Mon, 24 Feb 2025 14:41:20 +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=E3=80=90=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E6=9C=89=E6=95=88=E6=9C=9F=E3=80=91=E8=AE=BE=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Api/Tiobon.Core.Model.xml | 12 +++++++++++- .../Base/Ghre/Ghre_StudyRule.Dto.Base.cs | 9 +++++++-- Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs | 11 ++++++++--- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml index 5a5aaa57..758f2b49 100644 --- a/Tiobon.Core.Api/Tiobon.Core.Model.xml +++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml @@ -7035,6 +7035,11 @@ 部门是否含下阶 + + + 结果有效期 + + 必选修规则结果 (Dto.Base) @@ -21903,7 +21908,7 @@ - 岗位 + 职称 @@ -22006,6 +22011,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 5524bc4a..c982ff22 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs @@ -6,9 +6,9 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/8/21 13:41:22 SimonHsiao 初版 +*V0.01 2025/2/24 14:16:24 SimonHsiao 初版 * -* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. +* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ @@ -189,4 +189,9 @@ public class Ghre_StudyRuleBase /// 部门是否含下阶 /// public bool? IsDeptLower { get; set; } + + /// + /// 结果有效期 + /// + public int? ResultValidPeriod { get; set; } } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs index 5b04a69f..edcac1e9 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs @@ -6,9 +6,9 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2024/8/21 13:41:22 SimonHsiao 初版 +*V0.01 2025/2/24 14:16:24 SimonHsiao 初版 * -* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. +* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ @@ -71,7 +71,7 @@ public class Ghre_StudyRule : BasePoco public string GradeId { get; set; } /// - /// 岗位 + /// 职称 /// [Display(Name = "JobId"), Description("职称"), MaxLength(2000, ErrorMessage = "职称 不能超过 2000 个字符")] public string JobId { get; set; } @@ -190,4 +190,9 @@ public class Ghre_StudyRule : BasePoco /// 部门是否含下阶 /// public bool? IsDeptLower { get; set; } + + /// + /// 结果有效期 + /// + public int? ResultValidPeriod { get; set; } }