RoleDtoBase.java 1.36 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto.role;

3
import com.fasterxml.jackson.annotation.JsonProperty;
eddie.woo's avatar
eddie.woo committed
4

5
public class RoleDtoBase {
6
//    @JsonProperty("ID")
7
    private String id;
eddie.woo's avatar
eddie.woo committed
8 9
    private String name;
    private String description;
10
    @JsonProperty("serviceTypeID")
11
    private String serviceTypeId;
12
    @JsonProperty("roleCategoryID")
13
    private String roleCategoryId;
eddie.woo's avatar
eddie.woo committed
14 15
    private Boolean isRoleCategory;

16 17
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
18 19
    }

20
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
21
        this.id = id;
eddie.woo's avatar
eddie.woo committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

40 41
    public String getServiceTypeId() {
        return serviceTypeId;
eddie.woo's avatar
eddie.woo committed
42 43
    }

44 45
    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId;
eddie.woo's avatar
eddie.woo committed
46 47
    }

48 49
    public String getRoleCategoryId() {
        return roleCategoryId;
eddie.woo's avatar
eddie.woo committed
50 51
    }

52 53
    public void setRoleCategoryId(String roleCategoryId) {
        this.roleCategoryId = roleCategoryId;
eddie.woo's avatar
eddie.woo committed
54 55 56 57 58 59 60 61 62 63 64
    }

    public Boolean getIsRoleCategory() {
        return isRoleCategory;
    }

    public void setIsRoleCategory(Boolean isRoleCategory) {
        this.isRoleCategory = isRoleCategory;
    }

}