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

xin.altitude.cms.code.entity.DirNode Maven / Gradle / Ivy

There is a newer version: 1.3.4.1
Show newest version
/*
 * Copyright (Java知识图谱) 2022.
 */

package xin.altitude.cms.code.entity;

import java.util.List;

/**
 * @author explore
 * @since 2019/07/16 15:56
 **/
public class DirNode {
    /**
     * 文件名
     */
    private String name;
    /**
     * 是否是文件
     */
    private Boolean isFile;
    /**
     * 孩子结点
     */
    private List childs;
    
    public DirNode() {
    }
    
    public String getName() {
        return name;
    }
    
    public void setName(String name) {
        this.name = name;
    }
    
    public Boolean getFile() {
        return isFile;
    }
    
    public void setFile(Boolean file) {
        isFile = file;
    }
    
    public List getChilds() {
        return childs;
    }
    
    public void setChilds(List childs) {
        this.childs = childs;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy