|
|
|
@ -13,9 +13,10 @@ |
|
|
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ |
|
|
|
|
*│ 作者:SimonHsiao │ |
|
|
|
|
*└──────────────────────────────────┘ |
|
|
|
|
*/ |
|
|
|
|
*/ |
|
|
|
|
using System.ComponentModel; |
|
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema; |
|
|
|
|
|
|
|
|
|
namespace Tiobon.Core.Model.Models |
|
|
|
|
{ |
|
|
|
@ -34,8 +35,7 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// <summary> |
|
|
|
|
/// 答题记录ID |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ExamRecordId"), Description("答题记录ID"), MaxLength(10, ErrorMessage = "答题记录ID 不能超过 10 个字符")] |
|
|
|
|
public string ExamRecordId { get; set; } |
|
|
|
|
public long? ExamRecordId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 题目ID |
|
|
|
@ -58,6 +58,18 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
[Display(Name = "AnswerContent"), Description("答案内容"), MaxLength(32, ErrorMessage = "答案内容 不能超过 32 个字符")] |
|
|
|
|
public string AnswerContent { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 得分 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Score"), Description("得分"), Column(TypeName = "decimal(20,2)")] |
|
|
|
|
public decimal? Score { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 调整得分 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "AdjustScore"), Description("调整得分"), Column(TypeName = "decimal(20,2)")] |
|
|
|
|
public decimal? AdjustScore { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 备注 |
|
|
|
|
/// </summary> |
|
|
|
|