49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("EXAM_PAPERSUBJECT")]
|
|
public class EXAM_PAPERSUBJECT
|
|
{
|
|
[Key]
|
|
public decimal ID { get; set; }
|
|
/// <summary>
|
|
/// 试卷ID
|
|
/// </summary>
|
|
public decimal PAPERID { get; set; }
|
|
/// <summary>
|
|
/// 试卷类型(法律法规|基础知识)
|
|
/// </summary>
|
|
public decimal PAPERTYPE { get; set; }
|
|
/// <summary>
|
|
/// 题目类型(单选|组合型选择)
|
|
/// </summary>
|
|
public decimal SUBJECTTYPE { get; set; }
|
|
/// <summary>
|
|
/// 题目
|
|
/// </summary>
|
|
public string SUBJECT { get; set; }
|
|
/// <summary>
|
|
/// 选项(abcd选项 ##分割)
|
|
/// </summary>
|
|
public string OPTIONS { get; set; }
|
|
/// <summary>
|
|
/// 正确答案
|
|
/// </summary>
|
|
public string RIGHTANSWER { get; set; }
|
|
/// <summary>
|
|
/// 答案说明
|
|
/// </summary>
|
|
public string REMARK { get; set; }
|
|
/// <summary>
|
|
/// 考生答案(对不对需要跟正确答案对比)
|
|
/// </summary>
|
|
public string ANSWER { get; set; }
|
|
/// <summary>
|
|
/// 题目排序
|
|
/// </summary>
|
|
public decimal RN { get; set; }
|
|
}
|
|
}
|