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

io.github.novareseller.tool.utils.GeoIP Maven / Gradle / Ivy

There is a newer version: 1.5.3.beta
Show newest version
package io.github.novareseller.tool.utils;

/**
 * @description:
 * @author: verity zhan
 * @time: 2021/3/25 17:12
 */
public class GeoIP {

    private String ipAddress;
    private String city;
    private String country;

    public String getIpAddress() {
        return ipAddress;
    }

    public void setIpAddress(String ipAddress) {
        this.ipAddress = ipAddress;
    }

    public String getCity() {
        return city;
    }

    public void setCity(String city) {
        this.city = city;
    }

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy