All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hn.map.qq.domain.AddressComponent Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.map.qq.domain;

import lombok.Data;

/**
 * 描述:
 * 地址部件,address不满足需求时可自行拼接
 *
 * @author fei
 *  2019-12-31 10:47
 */
@Data
public class AddressComponent {

    /**
     * 国家
     */
    private String nation;
    /**
     * 省
     */
    private String province;
    /**
     * 市
     */
    private String city;
    /**
     * 区,可能为空字串
     */
    private String district;
    /**
     * 	街道,可能为空字串
     */
    private String street;
    /**
     * 	门牌,可能为空字串
     */
    private String street_number;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy