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
package pwc.taxtech.atms.dto;
import java.util.List;
/** @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\LogOnDto.cs */
public class LogOnDto {
private String userID;
private Integer checkState;
private Boolean needChangePassword;
private Integer passwordHash;
private Boolean isExternalUser;
// TODO create ProjectCustomerDto
private List<Object> projectCustomerList;
// TODO create ProjectDto
private List<Object> projectList;
public String getUserID() {
return userID;
}
public void setUserID(String userID) {
this.userID = userID;
}
public Integer getCheckState() {
return checkState;
}
public void setCheckState(Integer checkState) {
this.checkState = checkState;
}
public Boolean getNeedChangePassword() {
return needChangePassword;
}
public void setNeedChangePassword(Boolean needChangePassword) {
this.needChangePassword = needChangePassword;
}
public Integer getPasswordHash() {
return passwordHash;
}
public void setPasswordHash(Integer passwordHash) {
this.passwordHash = passwordHash;
}
public Boolean getIsExternalUser() {
return isExternalUser;
}
public void setIsExternalUser(Boolean isExternalUser) {
this.isExternalUser = isExternalUser;
}
public List<Object> getProjectCustomerList() {
return projectCustomerList;
}
public void setProjectCustomerList(List<Object> projectCustomerList) {
this.projectCustomerList = projectCustomerList;
}
public List<Object> getProjectList() {
return projectList;
}
public void setProjectList(List<Object> projectList) {
this.projectList = projectList;
}
}