forked from eomjinyoung/JavaWebProgramming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.java
More file actions
71 lines (68 loc) · 1.51 KB
/
Project.java
File metadata and controls
71 lines (68 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package spms.vo;
import java.util.Date;
public class Project {
protected int no; //프로젝트일련번호
protected String title; //프로젝트명
protected String content; //설명
protected Date startDate; //시작일
protected Date endDate; //종료일
protected int state; //상태
protected Date createdDate; //생성일
protected String tags; //태그들
public int getNo() {
return no;
}
public Project setNo(int no) {
this.no = no;
return this;
}
public String getTitle() {
return title;
}
public Project setTitle(String title) {
this.title = title;
return this;
}
public String getContent() {
return content;
}
public Project setContent(String content) {
this.content = content;
return this;
}
public Date getStartDate() {
return startDate;
}
public Project setStartDate(Date startDate) {
this.startDate = startDate;
return this;
}
public Date getEndDate() {
return endDate;
}
public Project setEndDate(Date endDate) {
this.endDate = endDate;
return this;
}
public int getState() {
return state;
}
public Project setState(int state) {
this.state = state;
return this;
}
public Date getCreatedDate() {
return createdDate;
}
public Project setCreatedDate(Date createdDate) {
this.createdDate = createdDate;
return this;
}
public String getTags() {
return tags;
}
public Project setTags(String tags) {
this.tags = tags;
return this;
}
}