Commit 68322958 authored by 赵啸非's avatar 赵啸非

添加网关验证码验证

parent a58977b1
...@@ -67,21 +67,6 @@ public class AreaController extends BaseCRUDJsonBodyMappingController<AreaServic ...@@ -67,21 +67,6 @@ public class AreaController extends BaseCRUDJsonBodyMappingController<AreaServic
} }
@Override
public String list(@RequestBody AreaEntity query) {
Map<String, Object> model = new HashMap<>();
Context context = this.getContext();
String busiDesc = "查询" + this.getModuleDesc();
try {
String resp = this.service.list(query, context);
recordSysLog(request, busiDesc + " 【成功】");
return resp;
} catch (Exception e) {
this.doException(request, busiDesc, model, e);
return this.createFailJsonResp(e.getMessage() == null ? "系统异常" : e.getMessage());
}
}
/** /**
* 获取站点下拉树列表 * 获取站点下拉树列表
*/ */
......
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