package org.jeecg.modules.lims.testing.vo; import lombok.Data; import java.util.ArrayList; import java.util.List; @Data public class OutlineTreeVo { private String id; private String key; private String value; private String title; private String no; private String type; private String pid; private String pname; private Integer sort; private boolean isLeaf = true; private List children = new ArrayList<>(); public OutlineTreeVo() { } public OutlineTreeVo(String id, String key, String value, String title, String type, Integer sort, Boolean isLeaf, List children) { this.id = id; this.key = key; this.value = value; this.title = title; this.type = type; this.sort = sort; this.isLeaf = isLeaf; this.children = children; } }