From 8bc52a134b7653b283b57f3eabda38eb6edd5013 Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Thu, 12 Sep 2024 14:45:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BF=85=E9=80=89=E4=BF=AE=E8=A7=84=E5=88=99?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=83=A8=E9=97=A8=E6=98=AF=E5=90=A6=E5=90=AB?= =?UTF-8?q?=E4=B8=8B=E9=98=B6=E6=A0=8F=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Api/Tiobon.Core.Model.xml | 10 ++++++++++ Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs | 5 +++++ Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs | 5 +++++ 3 files changed, 20 insertions(+) diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml index a0db92b3..18325792 100644 --- a/Tiobon.Core.Api/Tiobon.Core.Model.xml +++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml @@ -4845,6 +4845,11 @@ 规则名称 + + + 部门是否含下阶 + + 必选修规则结果 (Dto.Base) @@ -11836,6 +11841,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 10ba63e1..afd191b3 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_StudyRule.Dto.Base.cs @@ -187,5 +187,10 @@ namespace Tiobon.Core.Model.Models /// [Display(Name = "RuleName"), Description("规则名称"), MaxLength(32, ErrorMessage = "规则名称 不能超过 32 个字符")] public string RuleName { get; set; } + + /// + /// 部门是否含下阶 + /// + public bool? IsDeptLower { get; set; } } } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs index 3c1f4d09..58249963 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_StudyRule.cs @@ -189,5 +189,10 @@ namespace Tiobon.Core.Model.Models /// [Display(Name = "RuleName"), Description("规则名称"), MaxLength(32, ErrorMessage = "规则名称 不能超过 32 个字符")] public string RuleName { get; set; } + + /// + /// 部门是否含下阶 + /// + public bool? IsDeptLower { get; set; } } }