Browse Source

增加noPaging

zhouhao 6 years ago
parent
commit
8f70138aaa

+ 5 - 0
hsweb-commons/hsweb-commons-entity/src/main/java/org/hswebframework/web/commons/entity/param/QueryParamEntity.java

@@ -56,4 +56,9 @@ public class QueryParamEntity extends QueryParam implements QueryEntity {
         return toHttpQueryParamString();
     }
 
+    public QueryParamEntity noPaging() {
+        setPaging(false);
+        return this;
+    }
+
 }