|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2025/4/11 11:35:25 SimonHsiao 初版 |
|
|
|
|
*V0.01 2025/4/25 12:00:26 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -18,15 +18,15 @@ using System.ComponentModel; |
|
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
|
using SqlSugar; |
|
|
|
|
|
|
|
|
|
namespace Tiobon.Core.Model.Models |
|
|
|
|
{ |
|
|
|
|
namespace Tiobon.Core.Model.Models; |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 外训申请_宝连通 (Model) |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarTable("Ghre_ExternalTrainApplyOrder_Boltone", "Ghre_ExternalTrainApplyOrder_Boltone"), Entity(TableCnName = "外训申请_宝连通", TableName = "Ghre_ExternalTrainApplyOrder_Boltone")] |
|
|
|
|
public class Ghre_ExternalTrainApplyOrder_Boltone : BasePoco |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 外训申请_宝连通 (Model) |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarTable("Ghre_ExternalTrainApplyOrder_Boltone", "Ghre_ExternalTrainApplyOrder_Boltone"), Entity(TableCnName = "外训申请_宝连通", TableName = "Ghre_ExternalTrainApplyOrder_Boltone")] |
|
|
|
|
public class Ghre_ExternalTrainApplyOrder_Boltone : BasePoco |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 发起时间 |
|
|
|
@ -321,5 +321,16 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// SchoolName1 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "SchoolName1"), Description("SchoolName1"), MaxLength(128, ErrorMessage = "SchoolName1 不能超过 128 个字符")] |
|
|
|
|
public string SchoolName1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// CourseName1 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "CourseName1"), Description("CourseName1"), MaxLength(128, ErrorMessage = "CourseName1 不能超过 128 个字符")] |
|
|
|
|
public string CourseName1 { get; set; } |
|
|
|
|
} |
|
|
|
|