|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/5/31 17:43:01 SimonHsiao 初版 |
|
|
|
|
*V0.01 2024/6/21 17:49:13 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -23,9 +23,9 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Ghre_ExamRecord (Model) |
|
|
|
|
/// 考试记录 (Model) |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarTable("Ghre_ExamRecord", "Ghre_ExamRecord"), Entity(TableCnName = "Ghre_ExamRecord", TableName = "Ghre_ExamRecord")] |
|
|
|
|
[SugarTable("Ghre_ExamRecord", "Ghre_ExamRecord"), Entity(TableCnName = "考试记录", TableName = "Ghre_ExamRecord")] |
|
|
|
|
public class Ghre_ExamRecord : BasePoco |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
@ -67,14 +67,15 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
public DateTime? EndTime { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 实际开始时间 |
|
|
|
|
/// 实际结束时间 |
|
|
|
|
/// </summary> |
|
|
|
|
public DateTime? ActualBeginTime { get; set; } |
|
|
|
|
public DateTime? ActualEndTime { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 实际结束时间 |
|
|
|
|
/// 状态 |
|
|
|
|
/// </summary> |
|
|
|
|
public DateTime? ActualEndTime { get; set; } |
|
|
|
|
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")] |
|
|
|
|
public string Status { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 备注 |
|
|
|
|