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

com.feingto.cloud.dto.tree.TreeNodeDTO Maven / Gradle / Ivy

There is a newer version: 2.3.5.RELEASE
Show newest version
package com.feingto.cloud.dto.tree;

import lombok.Data;
import lombok.experimental.Accessors;

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

/**
 * jstree
 *
 * @author longfei
 */
@Data
@Accessors(chain = true)
public class TreeNodeDTO implements Serializable {
    private static final long serialVersionUID = -7570047299102931042L;

    private String id;

    private String sn;

    private String name;

    private String text;

    private String icon;

    private StateDTO state;

    private List children = new ArrayList<>();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy