Commit a409a137 authored by fangxinjiang's avatar fangxinjiang

init

parent 50bfaa0d
......@@ -51,7 +51,7 @@ public class HttpDaprUtil {
} catch (Exception e) {
return R.failed("获取信息失败:" + e.getMessage());
}
if (null != res && CommonConstants.SUCCESS_CODE == res.getStatusCodeValue()) {
if (null != res && CommonConstants.SUCCESS == res.getStatusCodeValue()) {
return R.ok(res.getBody());
} else {
return R.failed("获取信息失败!");
......@@ -79,7 +79,7 @@ public class HttpDaprUtil {
} catch (Exception e) {
return R.failed("获取信息失败:" + e.getMessage());
}
if (null != res && CommonConstants.SUCCESS_CODE == res.getStatusCodeValue()) {
if (null != res && CommonConstants.SUCCESS == res.getStatusCodeValue()) {
return R.ok(res.getBody());
} else {
return R.failed("获取信息失败!");
......
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