返回结果的通用类定制
首先定义两个工具类
package com.lcx.utils;
/**//这是第一个接口类,也可以定义为枚举类,定义状态码
- 定义返回结果的状态码
*/
public interface ResultCode {
public static Integer SUCCESS=20000; //成功
public static Integer ERROR=20001; //失败
}
//第二个工具类
`package com.lcx.utils;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.HashMap;
import java.util.Map;
//统一返回结果的类
@Data
public class R {
@ApiModelProperty(value = "是否成功")
private Boolean success;
@ApiModelProperty(value = "返回码")
private Integer code;
@ApiModelProperty(value = "返回消息")
private String message;
@ApiModelProperty(value = "返回数据")
private Map<String, Object> data = new HashMap<String, Object>();
//把构造方法私有
private R() {}
//成功静态方法
public static R ok() {
R r = new R();
r.setSuccess(true);
r.setCode(ResultCode.SUCCESS);
r.setMessage("成功");
return r;
}
//失败静态方法
public static R error() {
R r = new R();
r.setSuccess(false);
r.setCode(ResultCode.ERROR);
r.setMessage("失败");
return r;
}
public R success(Boolean success){
this.setSuccess(success);
return this;
}
public R message(String message){
this.setMessage(message);
return this;
}
public R code(Integer code){
this.setCode(code);
return this;
}
public R data(String key, Object value){
this.data.put(key, value);
return this;
}
public R data(Map<String, Object> map){
this.setData(map);
return this;
}
}
`
//使用的时候,我们在控制器方法中,所有的返回类型就是这个类R,结果直接定义在R中即可。那么返回的数据格式就是我们自己定义的

浙公网安备 33010602011771号