EmployeeVO.java
2.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package com.xiniunet.erp.hr.response;
import com.xiniunet.data.domain.Bank;
import com.xiniunet.framework.base.BaseResponse;
import com.xiniunet.master.domain.humanresource.*;
import java.util.List;
/**
* Created by DEV003 on 2014/8/26.
*/
public class EmployeeVO extends BaseResponse {
private Employee employee;
private List<Position> positionList;
private List<EmployeeContact> employeeContactList;
private List<Level> levelList;
private List<Organization> organizationList;
private List<Bank> bankList;
private List<Location> locationList;
private String photoUrl;
public Employee getEmployee() {
return employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
public List<Position> getPositionList() {
return positionList;
}
public void setPositionList(List<Position> positionList) {
this.positionList = positionList;
}
public List<EmployeeContact> getEmployeeContactList() {
return employeeContactList;
}
public void setEmployeeContactList(List<EmployeeContact> employeeContactList) {
this.employeeContactList = employeeContactList;
}
public List<Level> getLevelList() {
return levelList;
}
public void setLevelList(List<Level> levelList) {
this.levelList = levelList;
}
public List<Organization> getOrganizationList() {
return organizationList;
}
public void setOrganizationList(List<Organization> organizationList) {
this.organizationList = organizationList;
}
public List<Bank> getBankList() {
return bankList;
}
public void setBankList(List<Bank> bankList) {
this.bankList = bankList;
}
public String getPhotoUrl() {
return photoUrl;
}
public void setPhotoUrl(String photoUrl) {
this.photoUrl = photoUrl;
}
public List<Location> getLocationList() {
return locationList;
}
public void setLocationList(List<Location> locationList) {
this.locationList = locationList;
}
}