UserDataDto.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.qxgmat.dto.response;
  2. import com.alibaba.fastjson.JSONArray;
  3. public class UserDataDto {
  4. private String questionType;
  5. private Integer questionNumber;
  6. private Integer totalNumber;
  7. private Integer totalTime;
  8. private Integer totalCorrect;
  9. private Integer userQuestion;
  10. private Integer userNumber;
  11. private Integer userCorrect;
  12. private Integer userTime;
  13. private Integer correctTime;
  14. private Integer incorrectTime;
  15. private JSONArray difficult;
  16. private JSONArray place;
  17. public Integer getTotalNumber() {
  18. return totalNumber;
  19. }
  20. public void setTotalNumber(Integer totalNumber) {
  21. this.totalNumber = totalNumber;
  22. }
  23. public Integer getTotalTime() {
  24. return totalTime;
  25. }
  26. public void setTotalTime(Integer totalTime) {
  27. this.totalTime = totalTime;
  28. }
  29. public Integer getTotalCorrect() {
  30. return totalCorrect;
  31. }
  32. public void setTotalCorrect(Integer totalCorrect) {
  33. this.totalCorrect = totalCorrect;
  34. }
  35. public Integer getUserNumber() {
  36. return userNumber;
  37. }
  38. public void setUserNumber(Integer userNumber) {
  39. this.userNumber = userNumber;
  40. }
  41. public Integer getUserCorrect() {
  42. return userCorrect;
  43. }
  44. public void setUserCorrect(Integer userCorrect) {
  45. this.userCorrect = userCorrect;
  46. }
  47. public Integer getUserTime() {
  48. return userTime;
  49. }
  50. public void setUserTime(Integer userTime) {
  51. this.userTime = userTime;
  52. }
  53. public Integer getCorrectTime() {
  54. return correctTime;
  55. }
  56. public void setCorrectTime(Integer correctTime) {
  57. this.correctTime = correctTime;
  58. }
  59. public Integer getIncorrectTime() {
  60. return incorrectTime;
  61. }
  62. public void setIncorrectTime(Integer incorrectTime) {
  63. this.incorrectTime = incorrectTime;
  64. }
  65. public JSONArray getDifficult() {
  66. return difficult;
  67. }
  68. public void setDifficult(JSONArray difficult) {
  69. this.difficult = difficult;
  70. }
  71. public JSONArray getPlace() {
  72. return place;
  73. }
  74. public void setPlace(JSONArray place) {
  75. this.place = place;
  76. }
  77. public Integer getQuestionNumber() {
  78. return questionNumber;
  79. }
  80. public void setQuestionNumber(Integer questionNumber) {
  81. this.questionNumber = questionNumber;
  82. }
  83. public Integer getUserQuestion() {
  84. return userQuestion;
  85. }
  86. public void setUserQuestion(Integer userQuestion) {
  87. this.userQuestion = userQuestion;
  88. }
  89. public String getQuestionType() {
  90. return questionType;
  91. }
  92. public void setQuestionType(String questionType) {
  93. this.questionType = questionType;
  94. }
  95. }