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; } }