|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/9/6 16:37:59 SimonHsiao 初版 |
|
|
|
|
*V0.01 2024/9/10 14:28:24 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -25,7 +25,7 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// <summary> |
|
|
|
|
/// 培训需求 (Model) |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarTable("Ghre_Request", "Ghre_Request"), Entity(TableCnName = "培训需求", TableName = "Ghre_Request")] |
|
|
|
|
[SugarTable("Ghre_Request", "Ghre_Request"), Entity(TableCnName = "Ghre_Request", TableName = "Ghre_Request")] |
|
|
|
|
public class Ghre_Request : BasePoco |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
@ -132,11 +132,72 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// </summary> |
|
|
|
|
public long? SponsorId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 状态 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")] |
|
|
|
|
public string Status { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 备注 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")] |
|
|
|
|
public string RemarkSz { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 默认标志 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? IsDefault { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// WorkID |
|
|
|
|
/// </summary> |
|
|
|
|
public int? WorkID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// WorkNo |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "WorkNo"), Description("WorkNo"), MaxLength(100, ErrorMessage = "WorkNo 不能超过 100 个字符")] |
|
|
|
|
public string WorkNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// ToDoType |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ToDoType"), Description("ToDoType"), MaxLength(100, ErrorMessage = "ToDoType 不能超过 100 个字符")] |
|
|
|
|
public string ToDoType { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// BatchSID |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "BatchSID"), Description("BatchSID"), MaxLength(100, ErrorMessage = "BatchSID 不能超过 100 个字符")] |
|
|
|
|
public string BatchSID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// WorkState |
|
|
|
|
/// </summary> |
|
|
|
|
public int? WorkState { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// ShiftID |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ShiftID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// ConfirmUserID |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ConfirmUserID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// ConfirmTime |
|
|
|
|
/// </summary> |
|
|
|
|
public DateTime? ConfirmTime { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// ConfirmComment |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ConfirmComment"), Description("ConfirmComment"), MaxLength(2000, ErrorMessage = "ConfirmComment 不能超过 2000 个字符")] |
|
|
|
|
public string ConfirmComment { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段1 |
|
|
|
|
/// </summary> |
|
|
|
@ -206,17 +267,5 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 状态 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")] |
|
|
|
|
public string Status { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 备注 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")] |
|
|
|
|
public string RemarkSz { get; set; } |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|