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

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

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