package com.animal.common;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 接口统一返回包装类
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Result {
private String code;
private String msg;
private Object data;
public static Result success() {
return new Result(Constants.CODE_200, "", null);
}
public static Result success(Object data) {
return new Result(Constants.CODE_200, "", data);
}
public static Result error(String code, String msg) {
return new Result(code, msg, null);
}
public static Result error() {
return new Result(Constants.CODE_500, "系统错误", null);
}
}
最近下载更多
1271247100 LV9
11月21日
等车小学生 LV5
11月3日
微信网友_7513956916826112 LV3
10月22日
vincemokea LV9
9月5日
20041226 LV3
6月19日
2578193624 LV2
6月8日
Gretchen LV1
6月4日
sgrfsgrts LV2
5月15日
木子520 LV12
5月14日
5418888 LV3
5月13日
最近浏览更多
1271247100 LV9
11月21日
spray_shc
11月19日
暂无贡献等级
azoker
11月10日
暂无贡献等级
1203767407 LV1
11月7日
等车小学生 LV5
11月3日
8战魂5无双8 LV43
11月3日
missliu LV9
10月31日
khmumuno
10月25日
暂无贡献等级
微信网友_7513956916826112 LV3
10月22日
一个神秘人 LV2
10月21日

