EmployeeUpdate.java
2.92 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package com.xiniunet.erp.hr.domain;
import com.xiniunet.foundation.domain.Location;
import com.xiniunet.master.domain.humanresource.*;
import java.util.Date;
/**
* Created by DEV003 on 2014/10/14.
*/
public class EmployeeUpdate extends EmployeeDetail {
/**
* 头像路径
*/
private String photoUrl;
/**
* 职位
*/
private Job job;
/**
* 组织Id
*/
private Long OrganizationId;
/**
* 上级岗位
*/
private Position managerPosition;
/**
* 银行账号
*/
private BankAccount bankAccount;
/**
* 银行国家Id
*/
private Long bankCountryId;
/**
* 银行省份Id
*/
private Long bankProvinceId;
/**
* 居住地址
*/
private Location residenceLocation;
/**
* 用户帐号
*/
private String userAccount;
/**
* 职位调动日期
*/
private Date transferDate;
/**
* 工作年限
* 入职前+入职后(如果离职,则截止到离职日期)
*/
private Double years;
public Double getYears() {
return years;
}
public void setYears(Double years) {
this.years = years;
}
public String getPhotoUrl() {
return photoUrl;
}
public void setPhotoUrl(String photoUrl) {
this.photoUrl = photoUrl;
}
public Job getJob() {
return job;
}
public void setJob(Job job) {
this.job = job;
}
public Long getOrganizationId() {
return OrganizationId;
}
public void setOrganizationId(Long organizationId) {
OrganizationId = organizationId;
}
public Position getManagerPosition() {
return managerPosition;
}
public void setManagerPosition(Position managerPosition) {
this.managerPosition = managerPosition;
}
public BankAccount getBankAccount() {
return bankAccount;
}
public void setBankAccount(BankAccount bankAccount) {
this.bankAccount = bankAccount;
}
public Location getResidenceLocation() {
return residenceLocation;
}
public void setResidenceLocation(Location residenceLocation) {
this.residenceLocation = residenceLocation;
}
public Long getBankCountryId() {
return bankCountryId;
}
public void setBankCountryId(Long bankCountryId) {
this.bankCountryId = bankCountryId;
}
public Long getBankProvinceId() {
return bankProvinceId;
}
public void setBankProvinceId(Long bankProvinceId) {
this.bankProvinceId = bankProvinceId;
}
public String getUserAccount() {
return userAccount;
}
public void setUserAccount(String userAccount) {
this.userAccount = userAccount;
}
public Date getTransferDate() {
return transferDate;
}
public void setTransferDate(Date transferDate) {
this.transferDate = transferDate;
}
}