UserRoleSaveDto.java 1.11 KB
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;
    }


}