package com.gk.hotwork.Domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
public class ElementTree implements Serializable {
|
|
private final static long serialVersionUID = 1L;
|
|
/** 类型 type **/
|
private Integer type;
|
|
/** 标签 label **/
|
private String label;
|
|
/** 值 value **/
|
private Long value;
|
|
/** 子节点 **/
|
private List<ElementTree> children;
|
|
|
public String getLabel() {
|
return label;
|
}
|
|
public void setLabel(String label) {
|
this.label = label;
|
}
|
|
public Long getValue() {
|
return value;
|
}
|
|
public void setValue(Long value) {
|
this.value = value;
|
}
|
|
public List<ElementTree> getChildren() {
|
return children;
|
}
|
|
public void setChildren(List<ElementTree> children) {
|
this.children = children;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
}
|