QuestionNoExtendDto.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package com.qxgmat.dto.extend;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.QuestionNo;
  4. import javax.validation.constraints.NotEmpty;
  5. @Dto(entity = QuestionNo.class)
  6. public class QuestionNoExtendDto {
  7. private Integer id;
  8. private String title;
  9. private Integer no;
  10. private String module;
  11. private Integer totalNumber;
  12. private Integer totalCorrect;
  13. private Integer totalTime;
  14. private QuestionExtendDto question;
  15. public QuestionExtendDto getQuestion() {
  16. return question;
  17. }
  18. public void setQuestion(QuestionExtendDto question) {
  19. this.question = question;
  20. }
  21. public Integer getId() {
  22. return id;
  23. }
  24. public void setId(Integer id) {
  25. this.id = id;
  26. }
  27. public String getTitle() {
  28. return title;
  29. }
  30. public void setTitle(String title) {
  31. this.title = title;
  32. }
  33. public Integer getNo() {
  34. return no;
  35. }
  36. public void setNo(Integer no) {
  37. this.no = no;
  38. }
  39. public Integer getTotalNumber() {
  40. return totalNumber;
  41. }
  42. public void setTotalNumber(Integer totalNumber) {
  43. this.totalNumber = totalNumber;
  44. }
  45. public Integer getTotalCorrect() {
  46. return totalCorrect;
  47. }
  48. public void setTotalCorrect(Integer totalCorrect) {
  49. this.totalCorrect = totalCorrect;
  50. }
  51. public Integer getTotalTime() {
  52. return totalTime;
  53. }
  54. public void setTotalTime(Integer totalTime) {
  55. this.totalTime = totalTime;
  56. }
  57. public String getModule() {
  58. return module;
  59. }
  60. public void setModule(String module) {
  61. this.module = module;
  62. }
  63. }