StudentApplyQueryInfo.java 327 B

123456789101112131415
  1. package com.keao.edu.user.page;
  2. import com.keao.edu.common.page.QueryInfo;
  3. public class StudentApplyQueryInfo extends QueryInfo {
  4. private Integer studentId;
  5. public Integer getStudentId() {
  6. return studentId;
  7. }
  8. public void setStudentId(Integer studentId) {
  9. this.studentId = studentId;
  10. }
  11. }