必修规则的设定中增加重复回滚的设置

master
xiaochanghai 3 months ago
parent 0bbfc60bfe
commit 8c65ecfa66
  1. 10
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  2. 8
      Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs
  3. 8
      Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs

@ -7300,6 +7300,11 @@
结果有效期 结果有效期
</summary> </summary>
</member> </member>
<member name="P:Tiobon.Core.Model.Models.Ghre_StudyRuleBase.DuplicateType">
<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)
@ -23086,6 +23091,11 @@
结果有效期 结果有效期
</summary> </summary>
</member> </member>
<member name="P:Tiobon.Core.Model.Models.Ghre_StudyRule.DuplicateType">
<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)

@ -6,7 +6,7 @@
* *
* Ver * 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. * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved.
* *
@ -194,4 +194,10 @@ public class Ghre_StudyRuleBase
/// 结果有效期 /// 结果有效期
/// </summary> /// </summary>
public int? ResultValidPeriod { get; set; } public int? ResultValidPeriod { get; set; }
/// <summary>
/// 重复类型
/// </summary>
[Display(Name = "DuplicateType"), Description("重复类型"), MaxLength(32, ErrorMessage = "重复类型 不能超过 32 个字符")]
public string DuplicateType { get; set; }
} }

@ -6,7 +6,7 @@
* *
* Ver * 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. * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved.
* *
@ -195,4 +195,10 @@ public class Ghre_StudyRule : BasePoco
/// 结果有效期 /// 结果有效期
/// </summary> /// </summary>
public int? ResultValidPeriod { get; set; } public int? ResultValidPeriod { get; set; }
/// <summary>
/// 重复类型
/// </summary>
[Display(Name = "DuplicateType"), Description("重复类型"), MaxLength(32, ErrorMessage = "重复类型 不能超过 32 个字符")]
public string DuplicateType { get; set; }
} }

Loading…
Cancel
Save