UserRoleSimpleDto.java 1.39 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto.user;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

eddie.woo's avatar
eddie.woo committed
5 6 7 8
/**
 * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\UserRoleDto.cs
 */
public class UserRoleSimpleDto {
9
    @JsonProperty("ID")
10
    private String id;
11
    @JsonProperty("userID")
12
    private String userId;
13
    @JsonProperty("roleID")
14
    private String roleId;
15
    @JsonProperty("projectID")
16
    private String projectId;
17
    @JsonProperty("serviceTypeID")
18
    private String serviceTypeId;
eddie.woo's avatar
eddie.woo committed
19 20 21

    private String roleName;

22 23
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
24 25
    }

26
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
27
        this.id = id;
eddie.woo's avatar
eddie.woo committed
28 29
    }

30 31
    public String getUserId() {
        return userId;
eddie.woo's avatar
eddie.woo committed
32 33
    }

34 35
    public void setUserId(String userId) {
        this.userId = userId;
eddie.woo's avatar
eddie.woo committed
36 37
    }

38 39
    public String getRoleId() {
        return roleId;
eddie.woo's avatar
eddie.woo committed
40 41
    }

42 43
    public void setRoleId(String roleId) {
        this.roleId = roleId;
eddie.woo's avatar
eddie.woo committed
44 45
    }

46 47
    public String getProjectId() {
        return projectId;
eddie.woo's avatar
eddie.woo committed
48 49
    }

50 51
    public void setProjectId(String projectId) {
        this.projectId = projectId;
eddie.woo's avatar
eddie.woo committed
52 53
    }

54 55
    public String getServiceTypeId() {
        return serviceTypeId;
eddie.woo's avatar
eddie.woo committed
56 57
    }

58 59
    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId;
eddie.woo's avatar
eddie.woo committed
60 61 62 63 64 65 66 67 68 69 70
    }

    public String getRoleName() {
        return roleName;
    }

    public void setRoleName(String roleName) {
        this.roleName = roleName;
    }

}