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

com.base4j.mvc.sys.model.Resource Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.base4j.mvc.sys.model;

import java.util.List;

public class Resource{
    /**
     * id
     */
    private Long id;

    /**
     * 资源的名字
     */
    private String label;

    /**
     * 子元素
     */
    private List children;

    public Long getId() {
        return id;
    }

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

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public List getChildren() {
        return children;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy