1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.fzzy.igds.camera.data.ydqly;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @Description
| * @Author CZT
| * @Date 2026/1/4 16:54
| */
| @Data
| public class YdQlyNode implements Serializable {
|
| private String nodeId; //节点编码
| private String nodeName; //节点名称
| private Integer hasChild; //是否有子节点
|
| }
|
|