src/main/java/com/hx/resultTool/Result.java
@@ -1,5 +1,7 @@ package com.hx.resultTool; import com.hx.exception.TipsException; import java.io.Serializable; /** @@ -54,6 +56,21 @@ return Result; } /**校验返回码*/ public Boolean checkCode(){ if(ResponseCode.SUCCESS.equals(code)){ return true; } return false; } /**校验返回码,进行错误提示*/ public void checkTips(){ if(!ResponseCode.SUCCESS.equals(code)){ throw new TipsException("请求失败:"+this.code+","+this.msg); } } /*******************************************************************************/ public String getCode() {