ResultBean还原

暂时解决controller的编译报错,后面有时间再重构系统
This commit is contained in:
xiongxiaoyang 2021-07-31 20:13:22 +08:00
parent 386afa49c9
commit 24b24acae4

View File

@ -7,26 +7,25 @@ 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,9 +33,9 @@ public class ResultBean<T> {
}
private ResultBean(ResponseStatus responseStatus) {
this.code = responseStatus.getCode();
this.msg = responseStatus.getMsg();
private ResultBean(ResponseStatus ResponseStatus) {
this.code = ResponseStatus.getCode();;
this.msg = ResponseStatus.getMsg();
}
private ResultBean(T data) {
@ -44,33 +43,34 @@ public class ResultBean<T> {
}
/**
* 业务处理成功,无数据返回
*/
public static ResultBean<Void> ok() {
return new ResultBean<>();
* */
public static ResultBean ok() {
return new ResultBean();
}
/**
* 业务处理成功有数据返回
*/
public static <T> ResultBean<T> ok(T data) {
return new ResultBean<>(data);
* */
public static <T> ResultBean ok(T data) {
return new ResultBean(data);
}
/**
* 业务处理失败
*/
public static ResultBean<Void> fail(ResponseStatus responseStatus) {
return new ResultBean<>(responseStatus);
* */
public static ResultBean fail(ResponseStatus ResponseStatus) {
return new ResultBean(ResponseStatus);
}
/**
* 系统错误
*/
public static ResultBean<Void> error() {
return new ResultBean<>(ResponseStatus.ERROR);
* */
public static ResultBean error() {
return new ResultBean(ResponseStatus.ERROR);
}
}