using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel.DataAnnotations; using System.ComponentModel; namespace EMISOnline.ViewModel.ExamView { public class OnlineTestView { public OnlineTestView() { ExecutablePlanData = new Dictionary(); } public decimal id { get; set; } public decimal onlinetest_id { get; set; } /// /// test_paper_id /// public Nullable test_paper_id { get; set; } /// /// 试卷名称 /// [Required] [DisplayName("试卷名称")] public string test_paper_name { get; set; } /// /// 考试名称 /// [Required] [DisplayName("考试名称")] public string test_name { get; set; } public string test_method_set { get; set; } public string status { get; set; } /// /// test_begin_date /// public Nullable test_begin_date { get; set; } /// /// test_end_date /// public Nullable test_end_date { get; set; } /// /// limited_minutes /// [DisplayName("考试时长")] public Nullable limited_minutes { get; set; } /// /// test_address /// public string test_address { get; set; } [DisplayName("请选择参考人员")] public string examieeUser { get; set; } /// /// breaking_id /// [DisplayName("试题乱序")] public Nullable breaking_id { get; set; } /// /// test_method_set_id /// [DisplayName("考试类型")] public Nullable test_method_set_id { get; set; } /// /// notice_method_id /// public string notice_method_id { get; set; } /// /// status_id /// public Nullable status_id { get; set; } /// /// test_code /// public string test_code { get; set; } /// /// created_by /// public string created_by { get; set; } /// /// created_date /// public Nullable created_date { get; set; } /// /// subjectiveQAutoRead /// public Nullable subjectiveQAutoRead { get; set; } /// /// ModityContent /// [DisplayName("考试说明")] public string ModityContent { get; set; } [DisplayName("进入考试时间")] public string examtip { get; set; } /// /// ISautoBegin /// [DisplayName("是否自动开始结束考试")] public Nullable ISautoBegin { get; set; } /// /// isOpenAnswer /// [DisplayName("答案是否公开")] public Nullable isOpenAnswer { get; set; } /// /// rand_Test_time /// public Nullable rand_Test_time { get; set; } /// /// rand_test_count /// public Nullable rand_test_count { get; set; } /// /// rand_test_point_type /// [DisplayName("考试模式")] public Nullable rand_test_point_type { get; set; } /// /// rand_test_point_setid /// public Nullable rand_test_point_setid { get; set; } /// /// display_type /// public Nullable display_type { get; set; } /// /// isPublishScore /// [DisplayName("是否允许考生查看成绩")] public Nullable isPublishScore { get; set; } /// /// isControllable /// [DisplayName("是否允许监考人手动控制考试")] public Nullable isControllable { get; set; } /// /// notice_datetime /// [DisplayName("提醒时间")] public Nullable notice_datetime { get; set; } /// /// relogin_count /// [DisplayName("重复考试的次数")] public Nullable relogin_count { get; set; } /// /// filled /// public bool filled { get; set; } /// /// time_of_filling /// public Nullable time_of_filling { get; set; } /// /// version /// public byte[] version { get; set; } /// /// ExamID /// public System.Guid ExamID { get; set; } /// /// SubCode /// public string SubCode { get; set; } /// /// PassRate /// [DisplayName("及格率(%)")] public Nullable PassRate { get; set; } /// /// ExamerState /// public Nullable ExamerState { get; set; } /// /// isReadPaper /// [DisplayName("是否自动阅卷")] public Nullable isReadPaper { get; set; } /// /// 执行计划 /// [DisplayName("执行计划")] public System.Guid EducationMissionClassID { get; set; } public Dictionary ExecutablePlanData { get; set; } } }