liujie
2023-09-04 cf763f7ae2f86409c5f13b4fe36a25a8ec31cbf8
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
package com.stylefeng.guns.modular.system.util.GoogleMap;
 
public class AddressComponentsVo {
    /**
     * 长名称
     */
    private String longName;
    /**
     * 短名称
     */
    private String shortName;
 
    public String getLongName() {
        return longName;
    }
 
    public void setLongName(String longName) {
        this.longName = longName;
    }
 
    public String getShortName() {
        return shortName;
    }
 
    public void setShortName(String shortName) {
        this.shortName = shortName;
    }
}