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; } }