change: 日常小调整.
This commit is contained in:
@@ -0,0 +1,157 @@
|
||||
package com.serliunx.ddns.client.entity;
|
||||
|
||||
/**
|
||||
* IP地址查询响应
|
||||
* @author <a href="mailto:serliunx@yeah.net">SerLiunx</a>
|
||||
* @version 1.0.0
|
||||
* @since 2024/5/15
|
||||
*/
|
||||
@SuppressWarnings("all")
|
||||
public class IPAddressResponse {
|
||||
private String query;
|
||||
private String status;
|
||||
private String country;
|
||||
private String countryCode;
|
||||
private String region;
|
||||
private String regionName;
|
||||
private String city;
|
||||
private String zip;
|
||||
private String lat;
|
||||
private String lon;
|
||||
private String timezone;
|
||||
private String isp;
|
||||
private String org;
|
||||
private String as;
|
||||
|
||||
public String getQuery() {
|
||||
return query;
|
||||
}
|
||||
|
||||
public void setQuery(String query) {
|
||||
this.query = query;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getCountry() {
|
||||
return country;
|
||||
}
|
||||
|
||||
public void setCountry(String country) {
|
||||
this.country = country;
|
||||
}
|
||||
|
||||
public String getCountryCode() {
|
||||
return countryCode;
|
||||
}
|
||||
|
||||
public void setCountryCode(String countryCode) {
|
||||
this.countryCode = countryCode;
|
||||
}
|
||||
|
||||
public String getRegion() {
|
||||
return region;
|
||||
}
|
||||
|
||||
public void setRegion(String region) {
|
||||
this.region = region;
|
||||
}
|
||||
|
||||
public String getRegionName() {
|
||||
return regionName;
|
||||
}
|
||||
|
||||
public void setRegionName(String regionName) {
|
||||
this.regionName = regionName;
|
||||
}
|
||||
|
||||
public String getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity(String city) {
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
public String getZip() {
|
||||
return zip;
|
||||
}
|
||||
|
||||
public void setZip(String zip) {
|
||||
this.zip = zip;
|
||||
}
|
||||
|
||||
public String getLat() {
|
||||
return lat;
|
||||
}
|
||||
|
||||
public void setLat(String lat) {
|
||||
this.lat = lat;
|
||||
}
|
||||
|
||||
public String getLon() {
|
||||
return lon;
|
||||
}
|
||||
|
||||
public void setLon(String lon) {
|
||||
this.lon = lon;
|
||||
}
|
||||
|
||||
public String getTimezone() {
|
||||
return timezone;
|
||||
}
|
||||
|
||||
public void setTimezone(String timezone) {
|
||||
this.timezone = timezone;
|
||||
}
|
||||
|
||||
public String getIsp() {
|
||||
return isp;
|
||||
}
|
||||
|
||||
public void setIsp(String isp) {
|
||||
this.isp = isp;
|
||||
}
|
||||
|
||||
public String getOrg() {
|
||||
return org;
|
||||
}
|
||||
|
||||
public void setOrg(String org) {
|
||||
this.org = org;
|
||||
}
|
||||
|
||||
public String getAs() {
|
||||
return as;
|
||||
}
|
||||
|
||||
public void setAs(String as) {
|
||||
this.as = as;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "IPAddressResponse{" +
|
||||
"as='" + as + '\'' +
|
||||
", org='" + org + '\'' +
|
||||
", isp='" + isp + '\'' +
|
||||
", timezone='" + timezone + '\'' +
|
||||
", lon='" + lon + '\'' +
|
||||
", lat='" + lat + '\'' +
|
||||
", zip='" + zip + '\'' +
|
||||
", city='" + city + '\'' +
|
||||
", regionName='" + regionName + '\'' +
|
||||
", region='" + region + '\'' +
|
||||
", countryCode='" + countryCode + '\'' +
|
||||
", country='" + country + '\'' +
|
||||
", status='" + status + '\'' +
|
||||
", query='" + query + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user