Commit a76832a6 authored by yanzg's avatar yanzg

消除成功接收处理

parent c784d837
...@@ -82,7 +82,7 @@ public class BaseRequestAspect implements ThreadNext.Next { ...@@ -82,7 +82,7 @@ public class BaseRequestAspect implements ThreadNext.Next {
} }
logInterVo.setContent(JSON.toJSONString(paraTo));//请求参数 logInterVo.setContent(JSON.toJSONString(paraTo));//请求参数
logInterVo.setResult(JSON.toJSONString(responseResult));//返回参数 logInterVo.setResult(JSON.toJSONString(responseResult));//返回参数
logInterVo.setStatus(responseResult.getCode() == ResultConstants.SUCCESS ? 1 : 0); logInterVo.setStatus(responseResult != null && responseResult.getCode() == ResultConstants.SUCCESS ? 1 : 0);
return logInterVo; return logInterVo;
} }
......
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