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

com.github.hugh.bean.expand.tree.ElementTreeExpand Maven / Gradle / Ivy

There is a newer version: 2.7.14
Show newest version
package com.github.hugh.bean.expand.tree;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

/**
 * element ui 属性空间对应的属性实体类
 *
 * @author hugh
 * @since 2.5.11
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
public class ElementTreeExpand {

    private String id;//节点位移标识
    private String parentId;//父节点id
    private String label;//节点属性,按需求可定义多个属性
    private List> children;//该节点的子节点对象
    private T expand;//
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy