Skip to content

Commit

Permalink
1、修改netIp方法权限;
Browse files Browse the repository at this point in the history
  • Loading branch information
storezhang committed Dec 30, 2016
1 parent 0a5bcea commit 7c77ab8
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 48 deletions.
138 changes: 90 additions & 48 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions base/src/main/java/com/ruijc/Response.java
Expand Up @@ -50,6 +50,10 @@ public class Response<T> extends BaseObject {
private String msg;//消息
private T data;//数据

public static boolean isSuccess(Response rsp) {
return null != rsp && rsp.isSuccess();
}

public Response() {
code = OK;
}
Expand Down

0 comments on commit 7c77ab8

Please sign in to comment.