-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployee.java
84 lines (69 loc) · 1.74 KB
/
Employee.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
74
75
76
77
78
79
80
81
82
83
84
enum Department {
HUMAN_RESOURCE,
DEVELOPMENT,
DESIGN;
}
public class Employee{
private String code;
private String name;
private String phone;
private Department department;
private String address;
private String signUpDate;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getDepartment() {
switch(this.department){
case HUMAN_RESOURCE:
return "인사팀";
case DEVELOPMENT:
return "개발팀";
case DESIGN:
return "디자인팀";
}
return null;
}
public Boolean setDepartment(String department) {
switch(department){
case "인사팀":
this.department = Department.HUMAN_RESOURCE;
return true;
case "개발팀":
this.department = Department.DEVELOPMENT;
return true;
case "디자인팀":
this.department = Department.DESIGN;
return true;
default:
return false;
}
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getSignUpDate() {
return signUpDate;
}
public void setSignUpDate(String signUpDate) {
this.signUpDate = signUpDate;
}
}