75 lines
1.3 KiB
Java
75 lines
1.3 KiB
Java
package DB;
|
|
|
|
public class MemberVo {
|
|
public String id;
|
|
public String name;
|
|
public String pw;
|
|
public String addr;
|
|
public String tel;
|
|
public String gender;
|
|
public String hobby;
|
|
|
|
public MemberVo() {
|
|
}
|
|
|
|
public MemberVo(String id, String pw) {
|
|
this.id = id;
|
|
this.pw = pw;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getAddr() {
|
|
return this.addr;
|
|
}
|
|
|
|
public void setAddr(String addr) {
|
|
this.addr = addr;
|
|
}
|
|
|
|
public String getTel() {
|
|
return this.tel;
|
|
}
|
|
|
|
public void setTel(String tel) {
|
|
this.tel = tel;
|
|
}
|
|
|
|
public String getGender() {
|
|
return this.gender;
|
|
}
|
|
|
|
public void setGender(String gender) {
|
|
this.gender = gender;
|
|
}
|
|
|
|
public String getHobby() {
|
|
return this.hobby;
|
|
}
|
|
|
|
public void setHobby(String hobby) {
|
|
this.hobby = hobby;
|
|
}
|
|
|
|
public String getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getPw() {
|
|
return this.pw;
|
|
}
|
|
|
|
public void setPw(String pw) {
|
|
this.pw = pw;
|
|
}
|
|
} |