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
| package com.mzl.flower.dto.map.gaode;
|
| import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
| import lombok.Data;
|
| import java.util.List;
|
| // 顶层对象
| @JsonIgnoreProperties(ignoreUnknown = true)
| @Data
| public class GaodeMapResponse {
| /**
| * 返回结果状态值
| * 值为0或1,0表示失败;1表示成功
| */
| private String status;
| /**
| * 返回状态说明
| */
| private String info;
| /**
| * 状态码
| * 返回状态说明,10000代表正确,详情参阅 info 状态表
| */
| private String infocode;
| private int count;
| /**
| * 行政区列表
| */
| private List<GaodeDistrict> districts;
| }
|
|