|
@@ -0,0 +1,150 @@
|
|
|
+package com.hywa.map.representation.amap;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+public class AmapEntity implements Serializable {
|
|
|
+ private String formattedAddress;
|
|
|
+ private String country;
|
|
|
+ private String province;
|
|
|
+ private String citycode;
|
|
|
+ private String city;
|
|
|
+ private String district;
|
|
|
+ private String township;
|
|
|
+ private String neighborhood;
|
|
|
+ private String building;
|
|
|
+ private String name;
|
|
|
+ private String type;
|
|
|
+ private String adcode;
|
|
|
+ private String street;
|
|
|
+ private String number;
|
|
|
+ private String location;
|
|
|
+ private String level;
|
|
|
+
|
|
|
+ public String getFormattedAddress() {
|
|
|
+ return formattedAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFormattedAddress(String formattedAddress) {
|
|
|
+ this.formattedAddress = formattedAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCountry() {
|
|
|
+ return country;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCountry(String country) {
|
|
|
+ this.country = country;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProvince() {
|
|
|
+ return province;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProvince(String province) {
|
|
|
+ this.province = province;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCitycode() {
|
|
|
+ return citycode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCitycode(String citycode) {
|
|
|
+ this.citycode = citycode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCity() {
|
|
|
+ return city;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCity(String city) {
|
|
|
+ this.city = city;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDistrict() {
|
|
|
+ return district;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDistrict(String district) {
|
|
|
+ this.district = district;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTownship() {
|
|
|
+ return township;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTownship(String township) {
|
|
|
+ this.township = township;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNeighborhood() {
|
|
|
+ return neighborhood;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNeighborhood(String neighborhood) {
|
|
|
+ this.neighborhood = neighborhood;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBuilding() {
|
|
|
+ return building;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBuilding(String building) {
|
|
|
+ this.building = building;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAdcode() {
|
|
|
+ return adcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAdcode(String adcode) {
|
|
|
+ this.adcode = adcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStreet() {
|
|
|
+ return street;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStreet(String street) {
|
|
|
+ this.street = street;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNumber() {
|
|
|
+ return number;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNumber(String number) {
|
|
|
+ this.number = number;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLocation() {
|
|
|
+ return location;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocation(String location) {
|
|
|
+ this.location = location;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLevel() {
|
|
|
+ return level;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLevel(String level) {
|
|
|
+ this.level = level;
|
|
|
+ }
|
|
|
+}
|