UserBindEmployeeRequest.java
1.53 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
package com.xiniunet.erp.system.request;
import com.xiniunet.framework.base.BaseRequest;
/**
* ***************************************************************
* <p/>
* <pre>
* Copyright (c) 2014 –苏州犀牛网络科技有限公司
* Title: com.xiniunet.erp.system.request
* Description:
* ***************************************************************
* 2/2 0002 V1.0 xiniu New Files for com.xiniunet.erp.system.request
* </pre>
*/
public class UserBindEmployeeRequest extends BaseRequest {
private Long employeeId;
private Long userId;
private String account;
private String name;
private String email;
private String mobilePhone;
public Long getEmployeeId() {
return employeeId;
}
public void setEmployeeId(Long employeeId) {
this.employeeId = employeeId;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getMobilePhone() {
return mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
}