using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("EXAM_PAPER")] public class EXAM_PAPER { [Key] public int ID { get; set; } /// /// 试卷名 /// public string TITLE { get; set; } /// /// 试卷类型 /// public int TYPE { get; set; } /// /// 试卷类型名称 /// public string TYPENAME { get; set; } /// /// 试卷总分 /// public decimal TOTALSCORE { get; set; } /// /// 工号 /// public decimal? EID { get; set; } /// /// 得分 /// public decimal? SCORE { get; set; } /// /// 考试开始时间 /// public DateTime STARTTIME { get; set; } /// /// 考试结束时间 /// public DateTime ENDTIME { get; set; } /// /// 考试时长 /// public int TIMELENGTH { get; set; } /// /// 交卷时间 /// public DateTime? HANDTIME { get; set; } /// /// 用时 /// public int? USETIME { get; set; } public string APPID { get; set; } public string APPUSERID { get; set; } } }