package cn.flightfeather.thirdappmodule.bean.vo;
|
|
|
public class AreaVo {
|
|
private String provincecode;
|
private String provincename;
|
private String citycode;
|
private String cityname;
|
private String districtcode;
|
private String districtname;
|
private String towncode;
|
private String townname;
|
private String starttime;
|
private String endtime;
|
private String scensetypeid;
|
private int notstandardnum;
|
private int allsensenum;
|
|
public String getProvincecode() {
|
return provincecode;
|
}
|
|
public void setProvincecode(String provincecode) {
|
this.provincecode = provincecode;
|
}
|
|
public String getProvincename() {
|
return provincename;
|
}
|
|
public void setProvincename(String provincename) {
|
this.provincename = provincename;
|
}
|
|
public String getCitycode() {
|
return citycode;
|
}
|
|
public void setCitycode(String citycode) {
|
this.citycode = citycode;
|
}
|
|
public String getCityname() {
|
return cityname;
|
}
|
|
public void setCityname(String cityname) {
|
this.cityname = cityname;
|
}
|
|
public String getDistrictcode() {
|
return districtcode;
|
}
|
|
public void setDistrictcode(String districtcode) {
|
this.districtcode = districtcode;
|
}
|
|
public String getDistrictname() {
|
return districtname;
|
}
|
|
public void setDistrictname(String districtname) {
|
this.districtname = districtname;
|
}
|
|
public String getTowncode() {
|
return towncode;
|
}
|
|
public void setTowncode(String towncode) {
|
this.towncode = towncode;
|
}
|
|
public String getTownname() {
|
return townname;
|
}
|
|
public void setTownname(String townname) {
|
this.townname = townname;
|
}
|
|
public String getStarttime() {
|
return starttime;
|
}
|
|
public void setStarttime(String starttime) {
|
this.starttime = starttime;
|
}
|
|
public String getEndtime() {
|
return endtime;
|
}
|
|
public void setEndtime(String endtime) {
|
this.endtime = endtime;
|
}
|
|
public String getScensetypeid() {
|
return scensetypeid;
|
}
|
|
public void setScensetypeid(String scensetypeid) {
|
this.scensetypeid = scensetypeid;
|
}
|
|
public int getNotstandardnum() {
|
return notstandardnum;
|
}
|
|
public void setNotstandardnum(int notstandardnum) {
|
this.notstandardnum = notstandardnum;
|
}
|
|
public int getAllsensenum() {
|
return allsensenum;
|
}
|
|
public void setAllsensenum(int allsensenum) {
|
this.allsensenum = allsensenum;
|
}
|
}
|