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); } }
最近下载更多
最近浏览更多
chenke59520 LV1
1小时前
lyszz59520
1小时前
暂无贡献等级
南国夏天
昨天
暂无贡献等级
gzcznb LV8
昨天
Boss绝 LV9
昨天
shaohuaqingfu LV3
昨天
是数据库 LV3
昨天
MrReady LV14
前天
微信网友_7041036943331328 LV3
前天
xiaozhi丶 LV15
11月4日