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
package pwc.taxtech.atms.dto.user;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class UserRoleSaveDto {
@JsonProperty("roleID")
private String roleId;
@JsonProperty("serviceTypeID")
private String serviceTypeId;
private List<String> userIdList;
/**
* @return the roleId
*/
public String getRoleId() {
return roleId;
}
/**
* @param roleId the roleId to set
*/
public void setRoleId(String roleId) {
this.roleId = roleId;
}
/**
* @return the serviceTypeId
*/
public String getServiceTypeId() {
return serviceTypeId;
}
/**
* @param serviceTypeId the serviceTypeId to set
*/
public void setServiceTypeId(String serviceTypeId) {
this.serviceTypeId = serviceTypeId;
}
/**
* @return the userIdList
*/
public List<String> getUserIdList() {
return userIdList;
}
/**
* @param userIdList the userIdList to set
*/
public void setUserIdList(List<String> userIdList) {
this.userIdList = userIdList;
}
}