PaperAddView.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace EMISOnline.ViewModel.ExamView
  7. {
  8. public class PaperAddView
  9. {
  10. /// <summary>
  11. ///
  12. /// </summary>
  13. [DisplayName("试卷模版")]
  14. public System.Nullable<decimal> templateid{ get; set; }
  15. [DisplayName("试卷名称")]
  16. public string PageName
  17. {
  18. get;
  19. set;
  20. }
  21. [DisplayName("试题来源")]
  22. public string QuesLib
  23. {
  24. get;
  25. set;
  26. }
  27. public decimal PaperID
  28. {
  29. get;
  30. set;
  31. }
  32. public string LibarysString
  33. {
  34. get;
  35. set;
  36. }
  37. public string QuestionTypeString
  38. {
  39. get;
  40. set;
  41. }
  42. public string QuesLevel
  43. {
  44. get;
  45. set;
  46. }
  47. public string QuesChooseSort
  48. {
  49. get;
  50. set;
  51. }
  52. [DisplayName("试题使用频次")]
  53. public string UseFBeg
  54. {
  55. get;
  56. set;
  57. }
  58. public string UseFEnd
  59. {
  60. get;
  61. set;
  62. }
  63. [DisplayName("难度系数")]
  64. public string QuesLevelBeg
  65. {
  66. get;
  67. set;
  68. }
  69. public string QuesLevelEnd
  70. {
  71. get;
  72. set;
  73. }
  74. [DisplayName("组卷方式")]
  75. public string PageType
  76. {
  77. get;
  78. set;
  79. }
  80. [DisplayName("试题题型,数量,分值")]
  81. public string QuesType
  82. {
  83. get;
  84. set;
  85. }
  86. [DisplayName("优先使用")]
  87. public bool QuesFCount
  88. {
  89. get;
  90. set;
  91. }
  92. public bool QuesUpdateTime
  93. {
  94. get;
  95. set;
  96. }
  97. public string QuesSetting
  98. {
  99. get;
  100. set;
  101. }
  102. public string QuesDis
  103. {
  104. get;
  105. set;
  106. }
  107. [DisplayName("是否有效")]
  108. public string IsEnable
  109. {
  110. get;
  111. set;
  112. }
  113. [DisplayName("试题出错率(大于%)")]
  114. public string ErrRate
  115. {
  116. get;
  117. set;
  118. }
  119. public string UseCount
  120. {
  121. get;
  122. set;
  123. }
  124. }
  125. public class QuestionLibaryArrangeView
  126. {
  127. public decimal Libaryid
  128. {
  129. get;
  130. set;
  131. }
  132. public int Number
  133. {
  134. get;
  135. set;
  136. }
  137. }
  138. public class QuestionTypeView
  139. {
  140. public decimal PSum
  141. {
  142. get;
  143. set;
  144. }
  145. public decimal QScore
  146. {
  147. get;
  148. set;
  149. }
  150. public decimal TSum
  151. {
  152. get;
  153. set;
  154. }
  155. public decimal QType
  156. {
  157. get;
  158. set;
  159. }
  160. }
  161. }