Commit 6915ec9b authored by 赵啸非's avatar 赵啸非

修改网关日志输出

parent 25cdd994
...@@ -108,6 +108,7 @@ public class UserController extends BaseCRUDJsonBodyMappingController<UserServic ...@@ -108,6 +108,7 @@ public class UserController extends BaseCRUDJsonBodyMappingController<UserServic
Result result = this.getService().findExt(query, pageInfo, context); Result result = this.getService().findExt(query, pageInfo, context);
model.put("data", result.getList()); model.put("data", result.getList());
model.put("pageInfo", result.getPageInfo()); model.put("pageInfo", result.getPageInfo());
super.parsePageInfo(model,result.getPageInfo());
this.parsePageInfo(model, result.getPageInfo()); this.parsePageInfo(model, result.getPageInfo());
code = this.doListAfter(query, model, context); code = this.doListAfter(query, model, context);
this.recordSysLog(this.request, busiDesc + " 【成功】"); this.recordSysLog(this.request, busiDesc + " 【成功】");
...@@ -119,6 +120,7 @@ public class UserController extends BaseCRUDJsonBodyMappingController<UserServic ...@@ -119,6 +120,7 @@ public class UserController extends BaseCRUDJsonBodyMappingController<UserServic
this.init(model, context); this.init(model, context);
ret.setCode(code); ret.setCode(code);
ret.setData(model); ret.setData(model);
ret.setDict(model.get(KEY_RESULT_DICT));
ret.setMsg(model.get(MESSAGE_INFO)==null?"":model.remove(MESSAGE_INFO).toString()); ret.setMsg(model.get(MESSAGE_INFO)==null?"":model.remove(MESSAGE_INFO).toString());
return ret; return ret;
} }
......
...@@ -6,6 +6,6 @@ ...@@ -6,6 +6,6 @@
"baseUrl": "http://192.168.0.217:17212/zwfw" "baseUrl": "http://192.168.0.217:17212/zwfw"
}, },
"portal-test": { "portal-test": {
"baseUrl": "http://192.168.0.98:11072/zwfw" "baseUrl": "http://192.168.0.98:11078/zwfw"
} }
} }
\ No newline at end of file
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