style: 代码格式化

This commit is contained in:
xiongxiaoyang 2022-05-11 15:59:17 +08:00
parent a372a09b18
commit 476bd43ab1
3 changed files with 2 additions and 3 deletions

View File

@ -35,7 +35,6 @@ public class CommonExceptionHandler {
return RestResp.fail(e.getErrorCodeEnum()); return RestResp.fail(e.getErrorCodeEnum());
} }
/** /**
* 处理系统异常 * 处理系统异常
* */ * */

View File

@ -27,5 +27,4 @@ public class PageReqDto {
* */ * */
private boolean fetchAll = false; private boolean fetchAll = false;
} }

View File

@ -6,7 +6,7 @@ import lombok.Getter;
import java.util.Objects; import java.util.Objects;
/** /**
* Http Rest 响应数据格式封装 * Http Rest 响应工具及数据格式封装
* *
* @author xiongxiaoyang * @author xiongxiaoyang
* @date 2022/5/11 * @date 2022/5/11
@ -78,4 +78,5 @@ public class RestResp<T> {
public boolean isOk() { public boolean isOk() {
return Objects.equals(this.code, ErrorCodeEnum.OK.getCode()); return Objects.equals(this.code, ErrorCodeEnum.OK.getCode());
} }
} }