You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recruit/java/com/example/bean/StudentProfileBean.java

65 lines
1.0 KiB

package com.example.bean;
public class StudentProfileBean {
private int id;
private String name;
private int age;
private String location;
private String interest;
private String studentID;
public int getId() {
return id;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
public String getLocation() {
return location;
}
public String getInterest() {
return interest;
}
public String getStudenID() {
return studentID;
}
public void setId(int id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
public void setAge(int age) {
this.age = age;
}
public void setLocation(String location) {
this.location = location;
}
public void setInterest(String interest) {
this.interest = interest;
}
public void setStudentID(String studentID) {
this.studentID = studentID;
}
}