com.gccloud.starter.common.vo.R Maven / Gradle / Ivy
package com.gccloud.starter.common.vo;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.gccloud.starter.common.constant.GlobalConst;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import java.io.Serializable;
/**
* 定义Json响应数据
*
* @param
*/
@Data
@ApiModel(description = "接口返回的对象")
@Accessors(chain = true)
@NoArgsConstructor
public class R implements Serializable {
@ApiModelProperty(notes = "响应码 200: 成功,其他: 异常")
private Integer code;
@ApiModelProperty(notes = "异常描述信息")
private String msg;
@ApiModelProperty(notes = "返回的数据")
private T data;
public R(Integer code, String msg, T data) {
this.code = code;
this.msg = msg;
this.data = data;
}
/**
* 成功
*
* @return
*/
public static R success(E data) {
return new R(GlobalConst.Response.Code.SUCCESS, null, data);
}
public static R success() {
return new R(GlobalConst.Response.Code.SUCCESS, null, null);
}
/**
* 失败
*
* @param msg
* @return
*/
public static R error(String msg) {
R result = new R();
result.setCode(GlobalConst.Response.Code.SERVER_ERROR);
result.setMsg(msg);
return result;
}
/**
* 失败
*
* @param code
* @param msg
* @return
*/
public static R error(Integer code, String msg) {
R result = new R();
result.setCode(code);
result.setMsg(msg);
return result;
}
/**
* 失败
*
* @return
*/
public static R error() {
R result = new R();
result.setCode(GlobalConst.Response.Code.SERVER_ERROR);
result.setMsg("未知异常,请联系管理员");
return result;
}
/**
* 添加返回的数据
*
* @param data
* @return
*/
public R put(T data) {
this.data = data;
return this;
}
/**
* 是否正常
*
* @return
*/
@JsonIgnore
public boolean isSuccess() {
return this.code.intValue() == GlobalConst.Response.Code.SUCCESS;
}
@JsonIgnore
public boolean isError() {
return this.code.intValue() != GlobalConst.Response.Code.SUCCESS;
}
}