12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.nuliji.tools.third.amap;
- /**
- * Created by gaojie on 2017/11/23.
- */
- public class IpInfo {
- private String province;
- private String city;
- private String adcode;
- private String rectangle;
- private Double longitude;
- private Double latitude;
- public String getProvince() {
- return province;
- }
- public void setProvince(String province) {
- this.province = province;
- }
- public String getCity() {
- return city;
- }
- public void setCity(String city) {
- this.city = city;
- }
- public String getAdcode() {
- return adcode;
- }
- public void setAdcode(String adcode) {
- this.adcode = adcode;
- }
- public String getRectangle() {
- return rectangle;
- }
- public void setRectangle(String rectangle) {
- this.rectangle = rectangle;
- }
- public Double getLongitude() {
- return longitude;
- }
- public void setLongitude(Double longitude) {
- this.longitude = longitude;
- }
- public Double getLatitude() {
- return latitude;
- }
- public void setLatitude(Double latitude) {
- this.latitude = latitude;
- }
- }
|