Commit a409a137 authored by fangxinjiang's avatar fangxinjiang

init

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