com.taotao.boot.ip2region.http.IpAnalyzeAddressDetail Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.taotao.boot.ip2region.http;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
public class IpAnalyzeAddressDetail implements Serializable {
/**
* 城市
*/
private String city;
/**
* 百度城市代码
*/
@JsonProperty("city_code")
private Integer cityCode;
/**
* 区县
*/
private String district;
/**
* 省份
*/
private String province;
/**
* 街道
*/
private String street;
/**
* 门地址
*/
@JsonProperty("street_number")
private String streetNumber;
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public Integer getCityCode() {
return cityCode;
}
public void setCityCode(Integer cityCode) {
this.cityCode = cityCode;
}
public String getDistrict() {
return district;
}
public void setDistrict(String district) {
this.district = district;
}
public String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public String getStreetNumber() {
return streetNumber;
}
public void setStreetNumber(String streetNumber) {
this.streetNumber = streetNumber;
}
}