From 9ce5b6e110b6a7d366439d3bedf45457dd80914b Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Tue, 20 May 2025 11:33:51 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=81=E4=B9=A6=20=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=9F=B9=E8=AE=AD=E6=9C=BA=E6=9E=84=E7=BB=B4=E6=8A=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Api/Tiobon.Core.Model.xml | 22 ++++++++++++++++++- .../Ghre/Ghre_CertificateRule.Dto.Base.cs | 15 +++++++++++-- .../Models/Ghre/Ghre_CertificateRule.cs | 16 +++++++++++--- 3 files changed, 47 insertions(+), 6 deletions(-) diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml index fb72f50f..0f29892b 100644 --- a/Tiobon.Core.Api/Tiobon.Core.Model.xml +++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml @@ -3015,6 +3015,16 @@ 颁发机构名称 + + + 颁发部门ID + + + + + 颁发公司ID + + 课程场景ID @@ -22530,7 +22540,17 @@ 颁发机构名称 - B + + + + + 颁发部门ID + + + + + 颁发公司ID + diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_CertificateRule.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_CertificateRule.Dto.Base.cs index 5ec1b7b4..03c3e49e 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_CertificateRule.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_CertificateRule.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/5/20 11:13:58 SimonHsiao 初版 +*V0.01 2025/5/20 11:29:11 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -193,7 +193,7 @@ public class Ghre_CertificateRuleBase /// /// 颁发机构ID /// - public int? IssueOrgId { get; set; } + public long? IssueOrgId { get; set; } /// /// 颁发机构名称 @@ -201,6 +201,17 @@ public class Ghre_CertificateRuleBase [Display(Name = "IssueOrgName"), Description("颁发机构名称"), MaxLength(64, ErrorMessage = "颁发机构名称 不能超过 64 个字符")] public string IssueOrgName { get; set; } + /// + /// 颁发部门ID + /// + public int? IssueDeptId { get; set; } + + /// + /// 颁发公司ID + /// + public int? IssueCompanyId { get; set; } + + /// /// 课程场景ID diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_CertificateRule.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_CertificateRule.cs index cddfb045..06eee679 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_CertificateRule.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_CertificateRule.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/5/20 11:13:58 SimonHsiao 初版 +*V0.01 2025/5/20 11:29:11 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -192,11 +192,21 @@ public class Ghre_CertificateRule : BasePoco /// /// 颁发机构ID /// - public int? IssueOrgId { get; set; } + public long? IssueOrgId { get; set; } /// /// 颁发机构名称 - /// B + /// [Display(Name = "IssueOrgName"), Description("颁发机构名称"), MaxLength(64, ErrorMessage = "颁发机构名称 不能超过 64 个字符")] public string IssueOrgName { get; set; } + + /// + /// 颁发部门ID + /// + public int? IssueDeptId { get; set; } + + /// + /// 颁发公司ID + /// + public int? IssueCompanyId { get; set; } }