|
|
@ -6,7 +6,7 @@ |
|
|
|
* |
|
|
|
* |
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
* ─────────────────────────────────── |
|
|
|
* ─────────────────────────────────── |
|
|
|
*V0.01 2024/6/27 14:05:58 SimonHsiao 初版 |
|
|
|
*V0.01 2024/9/24 10:53:13 SimonHsiao 初版 |
|
|
|
* |
|
|
|
* |
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
*┌──────────────────────────────────┐ |
|
|
@ -23,9 +23,9 @@ namespace Tiobon.Core.Model.Models |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// Ghre_Teacher (Model) |
|
|
|
/// 培训讲师 (Model) |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[SugarTable("Ghre_Teacher", "Ghre_Teacher"), Entity(TableCnName = "Ghre_Teacher", TableName = "Ghre_Teacher")] |
|
|
|
[SugarTable("Ghre_Teacher", "Ghre_Teacher"), Entity(TableCnName = "培训讲师", TableName = "Ghre_Teacher")] |
|
|
|
public class Ghre_Teacher : BasePoco |
|
|
|
public class Ghre_Teacher : BasePoco |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
@ -115,6 +115,93 @@ namespace Tiobon.Core.Model.Models |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
public int? IsDefault { get; set; } |
|
|
|
public int? IsDefault { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 状态 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")] |
|
|
|
|
|
|
|
public string Status { 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> |
|
|
|
|
|
|
|
/// 同意人 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
public long? AgreeUserId { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 同意时间 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
public DateTime? AgreeTime { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 同意理由 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "AgreeReason"), Description("同意理由"), MaxLength(2000, ErrorMessage = "同意理由 不能超过 2000 个字符")] |
|
|
|
|
|
|
|
public string AgreeReason { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 拒绝人 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
public long? RefuseUserId { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 拒绝时间 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
public DateTime? RefuseTime { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 拒绝理由 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "RefuseReason"), Description("拒绝理由"), MaxLength(2000, ErrorMessage = "拒绝理由 不能超过 2000 个字符")] |
|
|
|
|
|
|
|
public string RefuseReason { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// 预留字段1 |
|
|
|
/// 预留字段1 |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|