QuestionDetailView.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMISOnline.ViewModel.ExamView
  6. {
  7. public class Answers
  8. {
  9. public decimal answer_id { get; set; }
  10. public string content { get; set; }
  11. public bool? hasImg { get; set; }
  12. public decimal score { get; set; }
  13. public string url { get; set; }
  14. public decimal width { get; set; }
  15. public decimal height { get; set; }
  16. public string note { get; set; }
  17. }
  18. public class QuestionDetailView
  19. {
  20. public decimal question_id { get; set; }
  21. public string content { get; set; }
  22. public bool? hasImg { get; set; }
  23. public decimal score { get; set; }
  24. public string url { get; set; }
  25. public decimal width { get; set; }
  26. public decimal height { get; set; }
  27. public string note { get; set; }
  28. public string rightAnswer { get; set; }
  29. public List<Answers> answers { get; set; }
  30. }
  31. public class PaperQuestionView
  32. {
  33. public decimal question_id { get; set; }
  34. public decimal question_typeid { get; set; }
  35. public string content { get; set; }
  36. public bool? hasImg { get; set; }
  37. public decimal score { get; set; }
  38. public string url { get; set; }
  39. public decimal width { get; set; }
  40. public decimal height { get; set; }
  41. public string note { get; set; }
  42. public string rightAnswer { get; set; }
  43. public string userAnswer { get; set; }
  44. public decimal userscore { get; set; }
  45. public IEnumerable<Answers> answers { get; set; }
  46. }
  47. public class AnswerXml
  48. {
  49. public decimal test_question_Id
  50. {
  51. get;
  52. set;
  53. }
  54. public string answers
  55. {
  56. get;
  57. set;
  58. }
  59. public decimal src_score
  60. {
  61. get;
  62. set;
  63. }
  64. public decimal act_score
  65. {
  66. get;
  67. set;
  68. }
  69. public string memo
  70. {
  71. set;
  72. get;
  73. }
  74. }
  75. }