ExamMusicTheoryQueryInfo.java 459 B

12345678910111213141516171819202122
  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.07.01
  7. */
  8. public class ExamMusicTheoryQueryInfo extends QueryInfo {
  9. @ApiModelProperty(value = "考试项目编号")
  10. private Integer examId;
  11. public Integer getExamId() {
  12. return examId;
  13. }
  14. public void setExamId(Integer examId) {
  15. this.examId = examId;
  16. }
  17. }