考试记录

master
xiaochanghai 12 months ago
parent 373029cf78
commit d1d1b0a14b
  1. 1338
      Model/Tiobon.Web.pdm
  2. 48
      Tiobon.Core.Api/Tiobon.Core.Model.xml
  3. 26
      Tiobon.Core.Model/Base/Ghre/Ghre_ExamRecord.Dto.Base.cs
  4. 26
      Tiobon.Core.Model/Models/Ghre/Ghre_ExamRecord.cs
  5. 2
      Tiobon.Core.Model/View/Ghre/Ghre_ExamRecord.Dto.View.cs

File diff suppressed because it is too large Load Diff

@ -2290,9 +2290,9 @@
试卷ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.UserId">
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.StaffId">
<summary>
用户ID
员工ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.ExamPaperId">
@ -2325,11 +2325,31 @@
实际结束时间
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.RetakeTimes">
<summary>
重考次数
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.Status">
<summary>
状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.ScoreStatus">
<summary>
评分状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.Comment">
<summary>
评语
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.IsPass">
<summary>
是否合格
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecordBase.RemarkSz">
<summary>
备注
@ -6751,9 +6771,9 @@
试卷ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.UserId">
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.StaffId">
<summary>
用户ID
员工ID
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.ExamPaperId">
@ -6786,11 +6806,31 @@
实际结束时间
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.RetakeTimes">
<summary>
重考次数
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.Status">
<summary>
状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.ScoreStatus">
<summary>
评分状态
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.Comment">
<summary>
评语
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.IsPass">
<summary>
是否合格
</summary>
</member>
<member name="P:Tiobon.Core.Model.Models.Ghre_ExamRecord.RemarkSz">
<summary>
备注

@ -6,7 +6,7 @@
*
* Ver
*
*V0.01 2024/6/21 17:49:13 SimonHsiao
*V0.01 2024/7/4 11:46:52 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
@ -35,7 +35,7 @@ namespace Tiobon.Core.Model.Models
/// <summary>
/// 员工ID
/// </summary>
public long? StaffId { get; set; }
public int? StaffId { get; set; }
/// <summary>
/// 试卷ID
@ -69,12 +69,34 @@ namespace Tiobon.Core.Model.Models
/// </summary>
public DateTime? ActualEndTime { get; set; }
/// <summary>
/// 重考次数
/// </summary>
public int? RetakeTimes { get; set; }
/// <summary>
/// 状态
/// </summary>
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")]
public string Status { get; set; }
/// <summary>
/// 评分状态
/// </summary>
[Display(Name = "ScoreStatus"), Description("评分状态"), MaxLength(32, ErrorMessage = "评分状态 不能超过 32 个字符")]
public string ScoreStatus { get; set; }
/// <summary>
/// 评语
/// </summary>
[Display(Name = "Comment"), Description("评语"), MaxLength(2000, ErrorMessage = "评语 不能超过 2000 个字符")]
public string Comment { get; set; }
/// <summary>
/// 是否合格
/// </summary>
public bool? IsPass { get; set; }
/// <summary>
/// 备注
/// </summary>

@ -6,7 +6,7 @@
*
* Ver
*
*V0.01 2024/6/21 17:49:13 SimonHsiao
*V0.01 2024/7/4 11:46:52 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*
@ -37,7 +37,7 @@ namespace Tiobon.Core.Model.Models
/// <summary>
/// 员工ID
/// </summary>
public long? StaffId { get; set; }
public int? StaffId { get; set; }
/// <summary>
/// 试卷ID
@ -71,12 +71,34 @@ namespace Tiobon.Core.Model.Models
/// </summary>
public DateTime? ActualEndTime { get; set; }
/// <summary>
/// 重考次数
/// </summary>
public int? RetakeTimes { get; set; }
/// <summary>
/// 状态
/// </summary>
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")]
public string Status { get; set; }
/// <summary>
/// 评分状态
/// </summary>
[Display(Name = "ScoreStatus"), Description("评分状态"), MaxLength(32, ErrorMessage = "评分状态 不能超过 32 个字符")]
public string ScoreStatus { get; set; }
/// <summary>
/// 评语
/// </summary>
[Display(Name = "Comment"), Description("评语"), MaxLength(2000, ErrorMessage = "评语 不能超过 2000 个字符")]
public string Comment { get; set; }
/// <summary>
/// 是否合格
/// </summary>
public bool? IsPass { get; set; }
/// <summary>
/// 备注
/// </summary>

@ -6,7 +6,7 @@
*
* Ver
*
*V0.01 2024/6/21 17:49:13 SimonHsiao
*V0.01 2024/7/4 11:46:52 SimonHsiao
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*

Loading…
Cancel
Save