package com.ruoyi.integration.barrierGate.model;
|
|
|
/**
|
* @author zhibing.pu
|
* @Date 2024/9/5 11:29
|
*/
|
public class BaseResponse<T> {
|
|
private Integer code;
|
|
private String msg;
|
|
private T data;
|
|
public Integer getCode() {
|
return code;
|
}
|
|
public void setCode(Integer code) {
|
this.code = code;
|
}
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
|
public T getData() {
|
return data;
|
}
|
|
public void setData(T data) {
|
this.data = data;
|
}
|
|
public BaseResponse() {
|
}
|
|
public BaseResponse(Integer code, String msg, T data) {
|
this.code = code;
|
this.msg = msg;
|
this.data = data;
|
}
|
|
public static BaseResponse ok(){
|
return ok(null);
|
}
|
|
|
public static <T> BaseResponse<T> ok(T data){
|
BaseResponse baseResponse = new BaseResponse(0, "成功", data);
|
return baseResponse;
|
}
|
}
|