ExamRoomStudentRelationQueryInfo.java 921 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.keao.edu.user.page;
  2. import com.keao.edu.common.page.QueryInfo;
  3. import io.swagger.annotations.ApiModelProperty;
  4. /**
  5. * @Author Joburgess
  6. * @Date 2020.06.23
  7. */
  8. public class ExamRoomStudentRelationQueryInfo extends QueryInfo {
  9. @ApiModelProperty(value = "考级编号")
  10. private Long examId;
  11. @ApiModelProperty(value = "教室编号")
  12. private Long examRoomId;
  13. @ApiModelProperty(value = "是否已经加入教室")
  14. private Integer inRoom;
  15. public Long getExamId() {
  16. return examId;
  17. }
  18. public void setExamId(Long examId) {
  19. this.examId = examId;
  20. }
  21. public Long getExamRoomId() {
  22. return examRoomId;
  23. }
  24. public void setExamRoomId(Long examRoomId) {
  25. this.examRoomId = examRoomId;
  26. }
  27. public Integer getInRoom() {
  28. return inRoom;
  29. }
  30. public void setInRoom(Integer inRoom) {
  31. this.inRoom = inRoom;
  32. }
  33. }