1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.ruoyi.device.dto;
|
| import com.ruoyi.device.pojo.DeviceLedger;
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class DeviceAreaTreeDto {
|
| private Long id;
|
| private Long parentId;
|
| private String areaName;
|
| private String label;
|
| private Long sort;
|
| private String remark;
|
| private List<DeviceLedger> deviceList;
|
| private List<DeviceAreaTreeDto> children;
| }
|
|