TaskQuery.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package cn.com.qmth.examcloud.tool.vo;
  2. import cn.com.qmth.examcloud.tool.enums.TaskStatus;
  3. import cn.com.qmth.examcloud.tool.enums.TaskType;
  4. import java.io.Serializable;
  5. public class TaskQuery implements Serializable {
  6. private static final long serialVersionUID = 1L;
  7. private Integer pageNo;
  8. private Integer pageSize;
  9. private TaskType type;
  10. private TaskStatus status;
  11. private Long examId;
  12. private Long operatorId;
  13. public Integer getPageNo() {
  14. return pageNo;
  15. }
  16. public void setPageNo(Integer pageNo) {
  17. this.pageNo = pageNo;
  18. }
  19. public Integer getPageSize() {
  20. return pageSize;
  21. }
  22. public void setPageSize(Integer pageSize) {
  23. this.pageSize = pageSize;
  24. }
  25. public TaskType getType() {
  26. return type;
  27. }
  28. public void setType(TaskType type) {
  29. this.type = type;
  30. }
  31. public TaskStatus getStatus() {
  32. return status;
  33. }
  34. public void setStatus(TaskStatus status) {
  35. this.status = status;
  36. }
  37. public Long getExamId() {
  38. return examId;
  39. }
  40. public void setExamId(Long examId) {
  41. this.examId = examId;
  42. }
  43. public Long getOperatorId() {
  44. return operatorId;
  45. }
  46. public void setOperatorId(Long operatorId) {
  47. this.operatorId = operatorId;
  48. }
  49. }