-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.java
73 lines (64 loc) · 1.51 KB
/
Project.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
65
66
67
68
69
70
71
72
73
package ems.erp.beans;
public class Project {
private String Pname;
private String pstatus;
private String description;
private String cost;
private String assignTo;
private String department;
public String getAssignTo() {
return assignTo;
}
public void setAssignTo(String assignTo) {
this.assignTo = assignTo;
}
public String getDepartment() {
return department;
}
public void setDepartment(String department) {
this.department = department;
}
public String getPname() {
return Pname;
}
public void setPname(String pname) {
Pname = pname;
}
public String getPstatus() {
return pstatus;
}
public void setPstatus(String pstatus) {
this.pstatus = pstatus;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCost() {
return cost;
}
public void setCost(String cost) {
this.cost = cost;
}
public Project(String pname, String pstatus, String description, String cost, String assignTo, String department) {
super();
Pname = pname;
this.pstatus = pstatus;
this.description = description;
this.cost = cost;
this.assignTo = assignTo;
this.department = department;
}
public Project(String pname, String pstatus, String description, String cost) {
super();
Pname = pname;
this.pstatus = pstatus;
this.description = description;
this.cost = cost;
}
public Project() {
super();
}
}