IpInfo.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.nuliji.tools.third.amap;
  2. /**
  3. * Created by gaojie on 2017/11/23.
  4. */
  5. public class IpInfo {
  6. private String province;
  7. private String city;
  8. private String adcode;
  9. private String rectangle;
  10. private Double longitude;
  11. private Double latitude;
  12. public String getProvince() {
  13. return province;
  14. }
  15. public void setProvince(String province) {
  16. this.province = province;
  17. }
  18. public String getCity() {
  19. return city;
  20. }
  21. public void setCity(String city) {
  22. this.city = city;
  23. }
  24. public String getAdcode() {
  25. return adcode;
  26. }
  27. public void setAdcode(String adcode) {
  28. this.adcode = adcode;
  29. }
  30. public String getRectangle() {
  31. return rectangle;
  32. }
  33. public void setRectangle(String rectangle) {
  34. this.rectangle = rectangle;
  35. }
  36. public Double getLongitude() {
  37. return longitude;
  38. }
  39. public void setLongitude(Double longitude) {
  40. this.longitude = longitude;
  41. }
  42. public Double getLatitude() {
  43. return latitude;
  44. }
  45. public void setLatitude(Double latitude) {
  46. this.latitude = latitude;
  47. }
  48. }