教育训练处考试制证系统后端
zf
2023-09-07 9e239cd627e9b48b35768ed09bcf51474b4fd5b3
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;
}