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
| package com.ruoyi.common.core.vo;
|
| import lombok.Data;
|
| /**
| * @author HJL
| * @version 1.0
| * @since 2024-07-25 14:25
| */
| @Data
| public class Geocodes {
|
| private String formatted_address;
|
| private String country;
|
| private String province;
|
| private String citycode;
|
| private String city;
|
| private String district;
|
| private String adcode;
|
| private String location;
|
| }
|
|