必修规则的设定中增加【结果有效期】设定

master
xiaochanghai 4 months ago
parent 6ab03f98fb
commit ebf0930e11
  1. 12
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  2. 9
      Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs
  3. 11
      Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs

@ -7035,6 +7035,11 @@
部门是否含下阶
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_StudyRuleBase.ResultValidPeriod">
<summary>
结果有效期
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghre_StudyRuleResultBase">
<summary>
必选修规则结果 (Dto.Base)
@ -21903,7 +21908,7 @@
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_StudyRule.JobId">
<summary>
岗位
职称
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_StudyRule.Year">
@ -22006,6 +22011,11 @@
部门是否含下阶
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_StudyRule.ResultValidPeriod">
<summary>
结果有效期
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghre_StudyRuleResult">
<summary>
必选修规则结果 (Model)

@ -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
/// 部门是否含下阶
/// </summary>
public bool? IsDeptLower { get; set; }
/// <summary>
/// 结果有效期
/// </summary>
public int? ResultValidPeriod { get; set; }
}

@ -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; }
/// <summary>
/// 岗位
/// 职称
/// </summary>
[Display(Name = "JobId"), Description("职称"), MaxLength(2000, ErrorMessage = "职称 不能超过 2000 个字符")]
public string JobId { get; set; }
@ -190,4 +190,9 @@ public class Ghre_StudyRule : BasePoco
/// 部门是否含下阶
/// </summary>
public bool? IsDeptLower { get; set; }
/// <summary>
/// 结果有效期
/// </summary>
public int? ResultValidPeriod { get; set; }
}

Loading…
Cancel
Save