Commit 92376897 authored by 李成龙's avatar 李成龙

Merge branch 'developer' of http://172.16.10.76/moa/amos-boot-biz into developer

parents a381f568 69ff2d8e
......@@ -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