1,后端Operation逻辑调整

2,数据库访问逻辑调整
3,AccountManagement调整优化
4,完善功能4/6
zgl
zhai_lw 6 years ago
parent 8eb298d93c
commit e58825d4ff

@ -1,8 +1,8 @@
{ {
"options":{ "options":{
"table": "String", "table": "String",
"fields": "List", "fields": "List<String>",
"value": "String", "limits": "Map<String,String>",
"start": "int", "start": "int",
"end": "int" "end": "int"
}, },

@ -27,7 +27,7 @@ public interface AccountManagement {
Map<String,String> limits = new HashMap<>(); Map<String,String> limits = new HashMap<>();
limits.put("id",id); limits.put("id",id);
try { try {
rs = DBManagement.select(columns,userTable,limits,1,2); rs = DBManagement.select(columns,userTable,limits,0,1);
} catch (Exception e) { } catch (Exception e) {
throw new GExcptSQL("QUERY\n\t"+id+"\nfailure"); throw new GExcptSQL("QUERY\n\t"+id+"\nfailure");
} }

Loading…
Cancel
Save