From 25cae2464303657ffa158493410ab8b9a92dc1d3 Mon Sep 17 00:00:00 2001
From: Redkale <22250530@qq.com>
Date: Sat, 25 Mar 2017 22:20:15 +0800
Subject: [PATCH]
---
service.html | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/service.html b/service.html
index 20fdbbdd1..5ef6d655e 100644
--- a/service.html
+++ b/service.html
@@ -525,8 +525,9 @@
}
//查询列表
+ //通过 /hello/query/offset:0/limit:20?bean={...} 获取结果
@RestMapping(name = "query", auth = false, comment = "查询Hello对象列表")
- public Sheet<HelloEntity> queryHello(@RestParam(name = "bean", comment = "过滤条件") HelloBean bean, Flipper flipper) { //通过 /hello/query/offset:0/limit:20?bean={...} 查询列表
+ public Sheet<HelloEntity> queryHello(@RestParam(name = "bean", comment = "过滤条件") HelloBean bean, Flipper flipper) {
return source.querySheet(HelloEntity.class, flipper, bean);
}