优化grid分页控件,增加可自定义参数而不被纳入自动生成的where语句中

This commit is contained in:
smallchill 2017-09-19 19:47:43 +08:00
parent 99bd886e77
commit 1fbde8d1fb

View File

@ -58,7 +58,7 @@ public class SqlKeyword {
w = Func.decodeUrl(w);
Map<String, String> mm = JsonKit.parse(w, HashMap.class);
for (String m : mm.keySet()) {
if (m.endsWith(SKIP)) break;
if (m.endsWith(SKIP)) continue;
String col = clearKeyWord(m);
String k = "";
for (String key : keyWord.keySet()) {