UserInfo
package com.model.bean;
public class UserInfo {
private int userid;
private String username;
private String password;
private int tetType;
private String telephone;
private String jobAddress;
private String sal;
private String school;
public int getUserid() {
return userid;
}
public void setUserid(int userid) {
this.userid = userid;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public int getTetType() {
return tetType;
}
public void setTetType(int tetType) {
this.tetType = tetType;
}
public String getTelephone() {
return telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public String getJobAddress() {
return jobAddress;
}
public void setJobAddress(String jobAddress) {
this.jobAddress = jobAddress;
}
public String getSal() {
return sal;
}
public void setSal(String sal) {
this.sal = sal;
}
public String getSchool() {
return school;
}
public void setSchool(String school) {
this.school = school;
}
@Override
public String toString() {
return "UserInfo [userid=" + userid + ", username=" + username + ", password=" + password + ", tetType="
+ tetType + ", telephone=" + telephone + ", jobAddress=" + jobAddress + ", sal=" + sal + ", school="
+ school + "]";
}
}