123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- namespace EMISOnline.ViewModel.ExamView
- {
- public class PaperAddView
- {
- /// <summary>
- ///
- /// </summary>
- [DisplayName("试卷模版")]
- public System.Nullable<decimal> 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;
- }
- }
- }
|