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

group.rober.base.pilot.model.MenuNode Maven / Gradle / Ivy

The newest version!
package group.rober.base.pilot.model;

import java.io.Serializable;
import java.util.List;

/**
 * 菜单节点
 */
public class MenuNode extends BaseNode implements Serializable {
    private String enabled;
    private String url;
    private String param;
    private List children;

    public String getEnabled() {
        return enabled;
    }

    public void setEnabled(String enabled) {
        this.enabled = enabled;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getParam() {
        return param;
    }

    public void setParam(String param) {
        this.param = param;
    }

    public List getChildren() {
        return children;
    }

    public void setChildren(List children) {
        this.children = children;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy