diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml index fce35185..68c6702b 100644 --- a/Tiobon.Core.Api/Tiobon.Core.Model.xml +++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml @@ -6855,6 +6855,11 @@ 系统内置 + + + 外训机构 + + 题目 (Dto.Base) @@ -25472,6 +25477,11 @@ 系统内置 + + + 外训机构 + + 题目 (Model) diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_Plan.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_Plan.Dto.Base.cs index 80d8d7dc..519d2a18 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_Plan.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_Plan.Dto.Base.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/4/8 11:44:41 SimonHsiao 初版 +*V0.01 2025/4/29 18:06:23 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -232,6 +232,12 @@ public class Ghre_PlanBase /// public int? BuiltIn { get; set; } + /// + /// 外训机构 + /// + [Display(Name = "OutSideOrg"), Description("外训机构"), MaxLength(256, ErrorMessage = "外训机构 不能超过 256 个字符")] + public string OutSideOrg { get; set; } + public List StaffId { get; set; } public List Months { get; set; } = new List(); } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_Plan.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_Plan.cs index 7558f05f..ccf3563b 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_Plan.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_Plan.cs @@ -6,7 +6,7 @@ * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── -*V0.01 2025/4/8 11:44:41 SimonHsiao 初版 +*V0.01 2025/4/29 18:06:23 SimonHsiao 初版 * * Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ @@ -232,4 +232,10 @@ public class Ghre_Plan : BasePoco /// 系统内置 /// public int? BuiltIn { get; set; } + + /// + /// 外训机构 + /// + [Display(Name = "OutSideOrg"), Description("外训机构"), MaxLength(256, ErrorMessage = "外训机构 不能超过 256 个字符")] + public string OutSideOrg { get; set; } }