KdQuestion.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. package cn.com.qmth.export;
  2. import java.util.List;
  3. public class KdQuestion {
  4. private Long id;
  5. private Integer number;
  6. private YunkaiQuesStructType qst;
  7. private QuesStructType quesStructType;
  8. private Integer structType;
  9. private Boolean objective;
  10. private YunkaiDifficulty difficulty;
  11. private String body;
  12. private String answer;
  13. private String qtype;
  14. private Boolean haveAudio;
  15. private List<KdQuesOption> options;
  16. private List<Long> propIds;
  17. private Boolean valid;
  18. private Double score;
  19. private List<Double> subScores;
  20. private List<KdQuestion> subQuestions;
  21. public Integer getNumber() {
  22. return number;
  23. }
  24. public void setNumber(Integer number) {
  25. this.number = number;
  26. }
  27. public Integer getStructType() {
  28. return structType;
  29. }
  30. public void setStructType(Integer structType) {
  31. this.structType = structType;
  32. }
  33. public Boolean getObjective() {
  34. return objective;
  35. }
  36. public void setObjective(Boolean objective) {
  37. this.objective = objective;
  38. }
  39. public String getBody() {
  40. return body;
  41. }
  42. public void setBody(String body) {
  43. this.body = body;
  44. }
  45. public String getAnswer() {
  46. return answer;
  47. }
  48. public void setAnswer(String answer) {
  49. this.answer = answer;
  50. }
  51. public List<KdQuesOption> getOptions() {
  52. return options;
  53. }
  54. public void setOptions(List<KdQuesOption> options) {
  55. this.options = options;
  56. }
  57. public Long getId() {
  58. return id;
  59. }
  60. public void setId(Long id) {
  61. this.id = id;
  62. }
  63. public String getQtype() {
  64. return qtype;
  65. }
  66. public void setQtype(String qtype) {
  67. this.qtype = qtype;
  68. }
  69. public Boolean getHaveAudio() {
  70. return haveAudio;
  71. }
  72. public void setHaveAudio(Boolean haveAudio) {
  73. this.haveAudio = haveAudio;
  74. }
  75. public Boolean getValid() {
  76. return valid;
  77. }
  78. public void setValid(Boolean valid) {
  79. this.valid = valid;
  80. }
  81. public List<Long> getPropIds() {
  82. return propIds;
  83. }
  84. public void setPropIds(List<Long> propIds) {
  85. this.propIds = propIds;
  86. }
  87. public YunkaiQuesStructType getQst() {
  88. return qst;
  89. }
  90. public void setQst(YunkaiQuesStructType qst) {
  91. this.qst = qst;
  92. }
  93. public YunkaiDifficulty getDifficulty() {
  94. return difficulty;
  95. }
  96. public void setDifficulty(YunkaiDifficulty difficulty) {
  97. this.difficulty = difficulty;
  98. }
  99. public QuesStructType getQuesStructType() {
  100. return quesStructType;
  101. }
  102. public void setQuesStructType(QuesStructType quesStructType) {
  103. this.quesStructType = quesStructType;
  104. }
  105. public List<Double> getSubScores() {
  106. return subScores;
  107. }
  108. public void setSubScores(List<Double> subScores) {
  109. this.subScores = subScores;
  110. }
  111. public List<KdQuestion> getSubQuestions() {
  112. return subQuestions;
  113. }
  114. public void setSubQuestions(List<KdQuestion> subQuestions) {
  115. this.subQuestions = subQuestions;
  116. }
  117. public Double getScore() {
  118. return score;
  119. }
  120. public void setScore(Double score) {
  121. this.score = score;
  122. }
  123. }