String description) {
super();
this.name = name;
this.gender = gender;
this.birthday = birthday;
this.cellphone = cellphone;
Email = email;
this.perference = perference;
this.type = type;
Description = description;
}
/*set和get方法*/
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getCellphone() {
return cellphone;
}
public void setCellphone(String cellphone) {
this.cellphone = cellphone;
}
public String getEmail() {
return Email;
}
public void setEmail(String email) {