package com.matrix.system.shopXcx.api.pojo; 
 | 
  
 | 
/** 
 | 
 * 根据经纬度获取省市区实体 
 | 
 * @author wlz 
 | 
 */ 
 | 
public class AddressUntilsPOJO { 
 | 
    /** 
 | 
     * 省 
 | 
     */ 
 | 
    private String  province; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 市 
 | 
     */ 
 | 
    private String  city; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 区 
 | 
     */ 
 | 
    private String  district; 
 | 
  
 | 
    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 getDistrict() { 
 | 
        return district; 
 | 
    } 
 | 
  
 | 
    public void setDistrict(String district) { 
 | 
        this.district = district; 
 | 
    } 
 | 
  
 | 
    @Override 
 | 
    public String toString() { 
 | 
        return "AddressUntilsPOJO{" + 
 | 
                "province='" + province + '\'' + 
 | 
                ", city='" + city + '\'' + 
 | 
                ", district='" + district + '\'' + 
 | 
                '}'; 
 | 
    } 
 | 
  
 | 
  
 | 
} 
 |