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

com.liuchink.chinkutils.baidu.bean.geocoding.ReverseGeocodingRespAddressComponent Maven / Gradle / Ivy

There is a newer version: 0.0.14.RELEASE
Show newest version
package com.liuchink.chinkutils.baidu.bean.geocoding;

import java.io.Serializable;

import com.alibaba.fastjson.annotation.JSONField;

import lombok.Data;

/**
 * @author liugang
 * @since 2020/10/27 15:41
 */
@Data
public class ReverseGeocodingRespAddressComponent  {
	private static final long serialVersionUID = 2489612344289299234L;
	private String country;
	@JSONField(name = "country_code")
	private String countryCode;
	@JSONField(name = "country_code_iso")
	private String countryCodeIso;
	@JSONField(name = "country_code_iso2")
	private String countryCodeIso2;
	private String province;
	private String city;
	@JSONField(name = "city_level")
	private String cityLevel;
	private String district;
	private String town;
	@JSONField(name = "town_code")
	private String townCode;
	private String street;
	@JSONField(name = "street_number")
	private String streetNumber;
	private String adcode;
	private String direction;
	private String distance;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy