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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| package com.mzl.flower.dto.response.district;
|
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class DistrictVO {
|
| private String id;
|
| /**
| * 名称
| */
| private String name;
|
| /**
| * 城市编码
| */
| private String citycode;
|
| /**
| * 区域编码
| */
| private String adcode;
|
| /**
| * 行政区域边界坐标点
| */
| private String polyline;
|
| /**
| * 区域中心点
| */
| private String center;
|
| /**
| * 行政区划级别(country国家 province 省份 city市 district 区县 street街道)
| */
| private String level;
| /**
| * 父id
| */
| private String parentId;
|
|
| List<DistrictVO> children;
| }
|
|