style(novel-common/bean): ResultBean更新

代码格式化,删除多余分号
This commit is contained in:
xiongxiaoyang 2021-05-16 10:46:22 +08:00
parent dbea8137fb
commit 386afa49c9

View File

@ -7,10 +7,11 @@ import lombok.Data;
/** /**
* 自定义Api响应结构 * 自定义Api响应结构
*
* @param <T> 响应数据类型
* @author xiongxiaoyang * @author xiongxiaoyang
* @version 1.0 * @version 1.0
* @since 2020/5/23 * @since 2020/5/23
* @param <T> 响应数据类型
*/ */
@Data @Data
public class ResultBean<T> { public class ResultBean<T> {
@ -20,12 +21,12 @@ public class ResultBean<T>{
/** /**
* 响应消息 * 响应消息
* */ */
@ApiModelProperty(value = "响应状态信息") @ApiModelProperty(value = "响应状态信息")
private String msg = ResponseStatus.OK.getMsg(); private String msg = ResponseStatus.OK.getMsg();
/** /**
* 响应中的数据 * 响应中的数据
* */ */
@ApiModelProperty(value = "响应数据") @ApiModelProperty(value = "响应数据")
private T data; private T data;
@ -34,7 +35,7 @@ public class ResultBean<T>{
} }
private ResultBean(ResponseStatus responseStatus) { private ResultBean(ResponseStatus responseStatus) {
this.code = responseStatus.getCode();; this.code = responseStatus.getCode();
this.msg = responseStatus.getMsg(); this.msg = responseStatus.getMsg();
} }
@ -43,24 +44,23 @@ public class ResultBean<T>{
} }
/** /**
* 业务处理成功,无数据返回 * 业务处理成功,无数据返回
* */ */
public static ResultBean<Void> ok() { public static ResultBean<Void> ok() {
return new ResultBean<>(); return new ResultBean<>();
} }
/** /**
* 业务处理成功有数据返回 * 业务处理成功有数据返回
* */ */
public static <T> ResultBean<T> ok(T data) { public static <T> ResultBean<T> ok(T data) {
return new ResultBean<>(data); return new ResultBean<>(data);
} }
/** /**
* 业务处理失败 * 业务处理失败
* */ */
public static ResultBean<Void> fail(ResponseStatus responseStatus) { public static ResultBean<Void> fail(ResponseStatus responseStatus) {
return new ResultBean<>(responseStatus); return new ResultBean<>(responseStatus);
} }
@ -68,7 +68,7 @@ public class ResultBean<T>{
/** /**
* 系统错误 * 系统错误
* */ */
public static ResultBean<Void> error() { public static ResultBean<Void> error() {
return new ResultBean<>(ResponseStatus.ERROR); return new ResultBean<>(ResponseStatus.ERROR);
} }