Showing
2 changed files
with
8 additions
and
8 deletions
| ... | @@ -36,22 +36,22 @@ public class HsCodeInterceptor extends HandlerInterceptorAdapter { | ... | @@ -36,22 +36,22 @@ public class HsCodeInterceptor extends HandlerInterceptorAdapter { |
| 36 | //String uri = request.getRequestURI(); | 36 | //String uri = request.getRequestURI(); |
| 37 | 37 | ||
| 38 | if(StringUtils.isBlank(appId)){ | 38 | if(StringUtils.isBlank(appId)){ |
| 39 | - this.returnJson(response,false,"10016","Appid 不能为空"); | 39 | + this.returnJson(response,false,"10016","Appid不能为空"); |
| 40 | return false; | 40 | return false; |
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | if(StringUtils.isBlank(appkey)){ | 43 | if(StringUtils.isBlank(appkey)){ |
| 44 | - this.returnJson(response,false,"10017","Appkey 不能为空"); | 44 | + this.returnJson(response,false,"10017","Appkey不能为空"); |
| 45 | return false; | 45 | return false; |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | if(StringUtils.isBlank(timeStamp)){ | 48 | if(StringUtils.isBlank(timeStamp)){ |
| 49 | - this.returnJson(response,false,"10018","TimeStamp 不能为空"); | 49 | + this.returnJson(response,false,"10018","TimeStamp不能为空"); |
| 50 | return false; | 50 | return false; |
| 51 | } | 51 | } |
| 52 | 52 | ||
| 53 | if(StringUtils.isBlank(token)){ | 53 | if(StringUtils.isBlank(token)){ |
| 54 | - this.returnJson(response,false,"10013","token 不能为空"); | 54 | + this.returnJson(response,false,"10013","token不能为空"); |
| 55 | return false; | 55 | return false; |
| 56 | } | 56 | } |
| 57 | 57 | ... | ... |
| ... | @@ -35,22 +35,22 @@ public class SignInterceptor extends HandlerInterceptorAdapter { | ... | @@ -35,22 +35,22 @@ public class SignInterceptor extends HandlerInterceptorAdapter { |
| 35 | 35 | ||
| 36 | 36 | ||
| 37 | if(StringUtils.isBlank(appId)){ | 37 | if(StringUtils.isBlank(appId)){ |
| 38 | - this.returnJson(response,false,"10016","Appid 不能为空"); | 38 | + this.returnJson(response,false,"10016","Appid不能为空"); |
| 39 | return false; | 39 | return false; |
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | if(StringUtils.isBlank(appkey)){ | 42 | if(StringUtils.isBlank(appkey)){ |
| 43 | - this.returnJson(response,false,"10017","Appkey 不能为空"); | 43 | + this.returnJson(response,false,"10017","Appkey不能为空"); |
| 44 | return false; | 44 | return false; |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | if(StringUtils.isBlank(timeStamp)){ | 47 | if(StringUtils.isBlank(timeStamp)){ |
| 48 | - this.returnJson(response,false,"10018","TimeStamp 不能为空"); | 48 | + this.returnJson(response,false,"10018","TimeStamp不能为空"); |
| 49 | return false; | 49 | return false; |
| 50 | } | 50 | } |
| 51 | 51 | ||
| 52 | if(StringUtils.isBlank(token)){ | 52 | if(StringUtils.isBlank(token)){ |
| 53 | - this.returnJson(response,false,"10013","token 不能为空"); | 53 | + this.returnJson(response,false,"10013","token不能为空"); |
| 54 | return false; | 54 | return false; |
| 55 | } | 55 | } |
| 56 | 56 | ... | ... |
-
Please register or login to post a comment