using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using EMISOnline.Entities; namespace EMISOnline.ViewModel.ExamView { public class QuestionSettingView { /// /// test_question_Id /// public decimal test_question_Id { get; set; } /// /// 试题类型 /// [DisplayName("试题类型")] public Nullable base_question_type_id { get; set; } /// /// 试题类型 /// [DisplayName("题干内容")] public string content { get; set; } /// /// question_file_id /// [DisplayName("题干图片")] public Nullable question_file_id { get; set; } /// /// knowledge_type_id /// public Nullable knowledge_type_id { get; set; } /// /// knowledge_point_id /// public Nullable knowledge_point_id { get; set; } /// /// 难度系数 /// [DisplayName("难度系数")] public Nullable difficulty_degree { get; set; } /// /// 答案 /// [DisplayName("答案")] public string answers { get; set; } /// /// is_order /// public Nullable is_order { get; set; } /// /// answers_note /// public string answers_note { get; set; } /// /// 备注 /// [DisplayName("备注")] public string note { get; set; } /// /// KeyWordIsAnd /// public Nullable KeyWordIsAnd { get; set; } /// /// test_question_libary_id /// public Nullable test_question_libary_id { get; set; } /// /// used_count /// public Nullable used_count { get; set; } /// /// right_percent /// public Nullable right_percent { get; set; } /// /// wrong_count /// public Nullable wrong_count { get; set; } /// /// 状态 /// [DisplayName("状态")] public Nullable is_vaild { get; set; } /// /// created_by /// public string created_by { get; set; } /// /// created_date /// public Nullable created_date { get; set; } /// /// 缺省分数 /// [DisplayName("缺省分数")] public Nullable score { get; set; } /// /// wrong_percent /// public Nullable wrong_percent { get; set; } /// /// filled /// public bool filled { get; set; } /// /// time_of_filling /// public Nullable time_of_filling { get; set; } /// /// test_question_ParentId /// public Nullable test_question_ParentId { get; set; } public List question_provid_answer { get; set; } public string libaryName { get; set; } public string TypeName { get; set; } } }