ExamCertificationQueryInfo.java 687 B

1234567891011121314151617181920212223242526272829
  1. package com.keao.edu.user.page;
  2. import com.keao.edu.common.page.QueryInfo;
  3. import io.swagger.annotations.ApiModelProperty;
  4. public class ExamCertificationQueryInfo extends QueryInfo {
  5. @ApiModelProperty(value = "学员编号",required = false)
  6. private Integer studentId;
  7. @ApiModelProperty(value = "考试编号",required = false)
  8. private Integer basicId;
  9. public Integer getStudentId() {
  10. return studentId;
  11. }
  12. public void setStudentId(Integer studentId) {
  13. this.studentId = studentId;
  14. }
  15. public Integer getBasicId() {
  16. return basicId;
  17. }
  18. public void setBasicId(Integer basicId) {
  19. this.basicId = basicId;
  20. }
  21. }