|
|
|
@ -19,6 +19,11 @@ public class PagerOptions extends Page{
|
|
|
|
|
private String submittedBatch; //数据批次
|
|
|
|
|
|
|
|
|
|
private String cityName; //城市名称
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 数据库类型
|
|
|
|
|
*/
|
|
|
|
|
private String dataBaseType;
|
|
|
|
|
|
|
|
|
|
private String districtName; //区县名
|
|
|
|
|
|
|
|
|
@ -62,6 +67,20 @@ public class PagerOptions extends Page{
|
|
|
|
|
this.cityName = cityName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the dataBaseType
|
|
|
|
|
*/
|
|
|
|
|
public String getDataBaseType() {
|
|
|
|
|
return dataBaseType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param dataBaseType the dataBaseType to set
|
|
|
|
|
*/
|
|
|
|
|
public void setDataBaseType(String dataBaseType) {
|
|
|
|
|
this.dataBaseType = dataBaseType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDistrictName() {
|
|
|
|
|
return districtName;
|
|
|
|
|
}
|
|
|
|
|