All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.soento.core.lang.RoleData Maven / Gradle / Ivy

package com.soento.core.lang;

/**
 * @author yantao.zeng
 */
public class RoleData extends BaseObject {
    private String id;
    private String name;
    private String description;
    private String parentId;
    private String icon;
    private Integer type;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    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;
    }

    public String getParentId() {
        return parentId;
    }

    public void setParentId(String parentId) {
        this.parentId = parentId;
    }

    public String getIcon() {
        return icon;
    }

    public void setIcon(String icon) {
        this.icon = icon;
    }

    public Integer getType() {
        return type;
    }

    public void setType(Integer type) {
        this.type = type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy