package com.kuanzhai.driver.bean;
|
|
import java.util.List;
|
|
/**
|
* @ClassName DistrictQueryBean
|
* @Description TODO
|
* @Author Administrator
|
* @Date 2020/10/20 15:39
|
* @Version 1.0
|
*/
|
public class DistrictQueryBean {
|
|
/**
|
* code : 0
|
* data : [{"city":"string","cityCode":"string","coordinate":"string","district":"string","districtCode":"string","province":"string","provinceCode":"string","type":0}]
|
* msg : string
|
*/
|
|
private int code;
|
private String msg;
|
private List<DataBean> data;
|
|
public int getCode() {
|
return code;
|
}
|
|
public void setCode(int code) {
|
this.code = code;
|
}
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
|
public List<DataBean> getData() {
|
return data;
|
}
|
|
public void setData(List<DataBean> data) {
|
this.data = data;
|
}
|
|
public static class DataBean {
|
/**
|
* city : string
|
* cityCode : string
|
* coordinate : string
|
* district : string
|
* districtCode : string
|
* province : string
|
* provinceCode : string
|
* type : 0
|
*/
|
|
private String city;
|
private String cityCode;
|
private String coordinate;
|
private String district;
|
private String districtCode;
|
private String province;
|
private String provinceCode;
|
private int type;
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public String getCityCode() {
|
return cityCode;
|
}
|
|
public void setCityCode(String cityCode) {
|
this.cityCode = cityCode;
|
}
|
|
public String getCoordinate() {
|
return coordinate;
|
}
|
|
public void setCoordinate(String coordinate) {
|
this.coordinate = coordinate;
|
}
|
|
public String getDistrict() {
|
return district;
|
}
|
|
public void setDistrict(String district) {
|
this.district = district;
|
}
|
|
public String getDistrictCode() {
|
return districtCode;
|
}
|
|
public void setDistrictCode(String districtCode) {
|
this.districtCode = districtCode;
|
}
|
|
public String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public String getProvinceCode() {
|
return provinceCode;
|
}
|
|
public void setProvinceCode(String provinceCode) {
|
this.provinceCode = provinceCode;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
}
|
}
|