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.
63 lines
1.3 KiB
63 lines
1.3 KiB
package com.cya.entity;
|
|
|
|
public class DormManage {
|
|
private int dormManId;
|
|
private String userName;
|
|
private String password;
|
|
private int dormBuildId;
|
|
private String name;
|
|
private String sex;
|
|
private String tel;
|
|
public int getDormManId() {
|
|
return dormManId;
|
|
}
|
|
public void setDormManId(int dormManId) {
|
|
this.dormManId = dormManId;
|
|
}
|
|
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 getDormBuildId() {
|
|
return dormBuildId;
|
|
}
|
|
public void setDormBuildId(int dormBuildId) {
|
|
this.dormBuildId = dormBuildId;
|
|
}
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
public String getSex() {
|
|
return sex;
|
|
}
|
|
public void setSex(String sex) {
|
|
this.sex = sex;
|
|
}
|
|
public String getTel() {
|
|
return tel;
|
|
}
|
|
public void setTel(String tel) {
|
|
this.tel = tel;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return "DormManage [dormManId=" + dormManId + ", userName=" + userName + ", password=" + password
|
|
+ ", dormBuildId=" + dormBuildId + ", name=" + name + ", sex=" + sex + ", tel=" + tel + "]";
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|