forked from eomjinyoung/JavaWebProgramming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMember.java
More file actions
55 lines (52 loc) · 1.03 KB
/
Member.java
File metadata and controls
55 lines (52 loc) · 1.03 KB
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
package spms.vo;
import java.util.Date;
public class Member {
protected int no;
protected String name;
protected String email;
protected String password;
protected Date createdDate;
protected Date modifiedDate;
public int getNo() {
return no;
}
public Member setNo(int no) {
this.no = no;
return this;
}
public String getName() {
return name;
}
public Member setName(String name) {
this.name = name;
return this;
}
public String getEmail() {
return email;
}
public Member setEmail(String email) {
this.email = email;
return this;
}
public String getPassword() {
return password;
}
public Member setPassword(String password) {
this.password = password;
return this;
}
public Date getCreatedDate() {
return createdDate;
}
public Member setCreatedDate(Date createdDate) {
this.createdDate = createdDate;
return this;
}
public Date getModifiedDate() {
return modifiedDate;
}
public Member setModifiedDate(Date modifiedDate) {
this.modifiedDate = modifiedDate;
return this;
}
}