培训计划新增外训机构栏位维护【牛尾】

master
xiaochanghai 2 months ago
parent 73141f0f86
commit 7b6801eb1b
  1. 10
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  2. 8
      Tiobon.Core.Model/Base/Ghre/Ghre_Plan.Dto.Base.cs
  3. 8
      Tiobon.Core.Model/Models/Ghre/Ghre_Plan.cs

@ -6855,6 +6855,11 @@
系统内置
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_PlanBase.OutSideOrg">
<summary>
外训机构
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghre_QuestionBase">
<summary>
题目 (Dto.Base)
@ -25472,6 +25477,11 @@
系统内置
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_Plan.OutSideOrg">
<summary>
外训机构
</summary>
</member>
<member name="T:Tiobon.Core.Model.Models.Ghre_Question">
<summary>
题目 (Model)

@ -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
/// </summary>
public int? BuiltIn { get; set; }
/// <summary>
/// 外训机构
/// </summary>
[Display(Name = "OutSideOrg"), Description("外训机构"), MaxLength(256, ErrorMessage = "外训机构 不能超过 256 个字符")]
public string OutSideOrg { get; set; }
public List<int> StaffId { get; set; }
public List<string> Months { get; set; } = new List<string>();
}

@ -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
/// 系统内置
/// </summary>
public int? BuiltIn { get; set; }
/// <summary>
/// 外训机构
/// </summary>
[Display(Name = "OutSideOrg"), Description("外训机构"), MaxLength(256, ErrorMessage = "外训机构 不能超过 256 个字符")]
public string OutSideOrg { get; set; }
}

Loading…
Cancel
Save