using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace EMISOnline.ViewModel.ExamView { public class PaperAddView { /// /// /// [DisplayName("试卷模版")] public System.Nullable templateid{ get; set; } [DisplayName("试卷名称")] public string PageName { get; set; } [DisplayName("试题来源")] public string QuesLib { get; set; } public decimal PaperID { get; set; } public string LibarysString { get; set; } public string QuestionTypeString { get; set; } public string QuesLevel { get; set; } public string QuesChooseSort { get; set; } [DisplayName("试题使用频次")] public string UseFBeg { get; set; } public string UseFEnd { get; set; } [DisplayName("难度系数")] public string QuesLevelBeg { get; set; } public string QuesLevelEnd { get; set; } [DisplayName("组卷方式")] public string PageType { get; set; } [DisplayName("试题题型,数量,分值")] public string QuesType { get; set; } [DisplayName("优先使用")] public bool QuesFCount { get; set; } public bool QuesUpdateTime { get; set; } public string QuesSetting { get; set; } public string QuesDis { get; set; } [DisplayName("是否有效")] public string IsEnable { get; set; } [DisplayName("试题出错率(大于%)")] public string ErrRate { get; set; } public string UseCount { get; set; } } public class QuestionLibaryArrangeView { public decimal Libaryid { get; set; } public int Number { get; set; } } public class QuestionTypeView { public decimal PSum { get; set; } public decimal QScore { get; set; } public decimal TSum { get; set; } public decimal QType { get; set; } } }