Commit 69ff2d8e authored by chenhao's avatar chenhao

提交优化项中的新增查询条件

parent 0e7a9309
......@@ -29,6 +29,10 @@ public class PageParam<K, V> extends HashMap<K, V> implements Pageable {
/**
* 排序
*/
protected String dangerLevel = null;
protected String dangerState = null;
protected Sort sort = null;
public PageParam() {
......@@ -127,4 +131,21 @@ public class PageParam<K, V> extends HashMap<K, V> implements Pageable {
return (Integer)(this.get("size"));
}
}
public String getDangerLevel() {
return dangerLevel;
}
public void setDangerLevel(String dangerLevel) {
this.dangerLevel = dangerLevel;
}
public String getDangerState() {
return dangerState;
}
public void setDangerState(String dangerState) {
this.dangerState = dangerState;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment