diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml
index 6a5ee284..4ca656d5 100644
--- a/Tiobon.Core.Api/Tiobon.Core.Model.xml
+++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml
@@ -2510,6 +2510,11 @@
员工ID
+
+
+ 课程快照ID
+
+
试卷ID
@@ -2525,14 +2530,24 @@
调整得分
+
+
+ 考试日期
+
+
- 开始答题时间
+ 开始时间
- 结束答题时间
+ 结束时间
+
+
+
+
+ 实际开始时间
@@ -2565,6 +2580,11 @@
是否合格
+
+
+ 来源
+
+
备注
@@ -7466,6 +7486,11 @@
员工ID
+
+
+ 课程快照ID
+
+
试卷ID
@@ -7481,14 +7506,24 @@
调整得分
+
+
+ 考试日期
+
+
- 开始答题时间
+ 开始时间
- 结束答题时间
+ 结束时间
+
+
+
+
+ 实际开始时间
@@ -7521,6 +7556,11 @@
是否合格
+
+
+ 来源
+
+
备注
diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_ExamRecord.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_ExamRecord.Dto.Base.cs
index 39f023c0..44b5d912 100644
--- a/Tiobon.Core.Model/Base/Ghre/Ghre_ExamRecord.Dto.Base.cs
+++ b/Tiobon.Core.Model/Base/Ghre/Ghre_ExamRecord.Dto.Base.cs
@@ -6,7 +6,7 @@
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
-*V0.01 2024/7/4 11:46:52 SimonHsiao 初版
+*V0.01 2024/7/18 13:11:42 SimonHsiao 初版
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*┌──────────────────────────────────┐
@@ -37,6 +37,11 @@ namespace Tiobon.Core.Model.Models
///
public int? StaffId { get; set; }
+ ///
+ /// 课程快照ID
+ ///
+ public long? CourseSnapId { get; set; }
+
///
/// 试卷ID
///
@@ -55,15 +60,25 @@ namespace Tiobon.Core.Model.Models
public decimal? AdjustScore { get; set; }
///
- /// 开始答题时间
+ /// 考试日期
+ ///
+ public DateTime? ExamDate { get; set; }
+
+ ///
+ /// 开始时间
///
public DateTime? BeginTime { get; set; }
///
- /// 结束答题时间
+ /// 结束时间
///
public DateTime? EndTime { get; set; }
+ ///
+ /// 实际开始时间
+ ///
+ public DateTime? ActualBeginTime { get; set; }
+
///
/// 实际结束时间
///
@@ -97,6 +112,12 @@ namespace Tiobon.Core.Model.Models
///
public bool? IsPass { get; set; }
+ ///
+ /// 来源
+ ///
+ [Display(Name = "Source"), Description("来源"), MaxLength(32, ErrorMessage = "来源 不能超过 32 个字符")]
+ public string Source { get; set; }
+
///
/// 备注
///
diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_ExamRecord.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_ExamRecord.cs
index 66d57842..1188484a 100644
--- a/Tiobon.Core.Model/Models/Ghre/Ghre_ExamRecord.cs
+++ b/Tiobon.Core.Model/Models/Ghre/Ghre_ExamRecord.cs
@@ -6,7 +6,7 @@
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
-*V0.01 2024/7/4 11:46:52 SimonHsiao 初版
+*V0.01 2024/7/18 13:11:42 SimonHsiao 初版
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*┌──────────────────────────────────┐
@@ -39,6 +39,11 @@ namespace Tiobon.Core.Model.Models
///
public int? StaffId { get; set; }
+ ///
+ /// 课程快照ID
+ ///
+ public long? CourseSnapId { get; set; }
+
///
/// 试卷ID
///
@@ -57,15 +62,25 @@ namespace Tiobon.Core.Model.Models
public decimal? AdjustScore { get; set; }
///
- /// 开始答题时间
+ /// 考试日期
+ ///
+ public DateTime? ExamDate { get; set; }
+
+ ///
+ /// 开始时间
///
public DateTime? BeginTime { get; set; }
///
- /// 结束答题时间
+ /// 结束时间
///
public DateTime? EndTime { get; set; }
+ ///
+ /// 实际开始时间
+ ///
+ public DateTime? ActualBeginTime { get; set; }
+
///
/// 实际结束时间
///
@@ -99,6 +114,12 @@ namespace Tiobon.Core.Model.Models
///
public bool? IsPass { get; set; }
+ ///
+ /// 来源
+ ///
+ [Display(Name = "Source"), Description("来源"), MaxLength(32, ErrorMessage = "来源 不能超过 32 个字符")]
+ public string Source { get; set; }
+
///
/// 备注
///