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
27
| package com.ruoyi.system.domain.resp;
|
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.List;
|
| /**
| * @author Mr.huang
| * @decription
| * @date 2023/9/7 15:22
| */
| @Data
| public class DistrictTreeRespDTO implements Serializable {
|
| private Long id;
|
| private String code;
|
| private String name;
|
| private String parentcode;
|
| private Byte type;
|
| private List<DistrictTreeRespDTO> children;
| }
|
|