必选修规则新增部门是否含下阶栏位

master
xiaochanghai 9 months ago
parent 2deb67daea
commit 8bc52a134b
  1. 10
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  2. 5
      Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs
  3. 5
      Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs

@ -4845,6 +4845,11 @@
规则名称 规则名称
</summary> </summary>
</member> </member>
<member name="P:Tiobon.Core.Model.Models.Ghre_StudyRuleBase.IsDeptLower">
<summary>
部门是否含下阶
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghre_StudyRuleResultBase"> <member name="T:Tiobon.Core.Model.Models.Ghre_StudyRuleResultBase">
<summary> <summary>
必选修规则结果 (Dto.Base) 必选修规则结果 (Dto.Base)
@ -11836,6 +11841,11 @@
规则名称 规则名称
</summary> </summary>
</member> </member>
<member name="P:Tiobon.Core.Model.Models.Ghre_StudyRule.IsDeptLower">
<summary>
部门是否含下阶
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghre_StudyRuleResult"> <member name="T:Tiobon.Core.Model.Models.Ghre_StudyRuleResult">
<summary> <summary>
必选修规则结果 (Model) 必选修规则结果 (Model)

@ -187,5 +187,10 @@ namespace Tiobon.Core.Model.Models
/// </summary> /// </summary>
[Display(Name = "RuleName"), Description("规则名称"), MaxLength(32, ErrorMessage = "规则名称 不能超过 32 个字符")] [Display(Name = "RuleName"), Description("规则名称"), MaxLength(32, ErrorMessage = "规则名称 不能超过 32 个字符")]
public string RuleName { get; set; } public string RuleName { get; set; }
/// <summary>
/// 部门是否含下阶
/// </summary>
public bool? IsDeptLower { get; set; }
} }
} }

@ -189,5 +189,10 @@ namespace Tiobon.Core.Model.Models
/// </summary> /// </summary>
[Display(Name = "RuleName"), Description("规则名称"), MaxLength(32, ErrorMessage = "规则名称 不能超过 32 个字符")] [Display(Name = "RuleName"), Description("规则名称"), MaxLength(32, ErrorMessage = "规则名称 不能超过 32 个字符")]
public string RuleName { get; set; } public string RuleName { get; set; }
/// <summary>
/// 部门是否含下阶
/// </summary>
public bool? IsDeptLower { get; set; }
} }
} }

Loading…
Cancel
Save