-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMember.java
64 lines (59 loc) · 1.21 KB
/
Member.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package job.study.web;
public class Member {
private String userId;
private String passwd;
private String email;
private String hp_1;
private String hp_2;
private String emailAgree; //라디오
private String[] interest; //체크박스
private String introduce;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPasswd() {
return passwd;
}
public void setPasswd(String passwd) {
this.passwd = passwd;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getHp_1() {
return hp_1;
}
public void setHp_1(String hp_1) {
this.hp_1 = hp_1;
}
public String getHp_2() {
return hp_2;
}
public void setHp_2(String hp_2) {
this.hp_2 = hp_2;
}
public String getEmailAgree() {
return emailAgree;
}
public void setEmailAgree(String emailAgree) {
this.emailAgree = emailAgree;
}
public String[] getInterest() {
return interest;
}
public void setInterest(String[] interest) {
this.interest = interest;
}
public String getIntroduce() {
return introduce;
}
public void setIntroduce(String introduce) {
this.introduce = introduce;
}
}