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

cn.yrm.tools.common.vo.TreeItem Maven / Gradle / Ivy

package cn.yrm.tools.common.vo;

import lombok.Data;

import java.util.List;

/**
 * @author yuanr
 */
@Data
public abstract class TreeItem {

    private String id;
    private String pid;
    private List children;

    public abstract String getTitle();

    public String getLabel() {
        return this.getTitle();
    }
    public String getValue() {
        return this.id;
    }
    public String getKey() {
        return this.id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy