UpdateRolePermissionDto.java 815 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
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
package pwc.taxtech.atms.dto.role;

public class UpdateRolePermissionDto {

    private String id;
    private String name;
    private String PLevel;
    /**
     * @return the id
     */
    public String getId() {
        return id;
    }
    /**
     * @param id the id to set
     */
    public void setId(String id) {
        this.id = id;
    }
    /**
     * @return the name
     */
    public String getName() {
        return name;
    }
    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }
    /**
     * @return the pLevel
     */
    public String getPLevel() {
        return PLevel;
    }
    /**
     * @param pLevel the pLevel to set
     */
    public void setPLevel(String pLevel) {
        PLevel = pLevel;
    }
    
    
}