首页>代码>基于SpringBoot+Vue实现的宠物领养系统>/源代码/animal-server/src/main/java/com/animal/common/Result.java
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);
    }

}
最近下载更多
Luck_ZDM  LV12 11月13日
3993zby  LV2 11月11日
15953970869  LV6 11月10日
chenke59520  LV4 11月7日
罗清晨  LV13 11月3日
最代码官方  LV168 11月2日
最近浏览更多
暂无贡献等级
divcss  LV2 11月17日
暂无贡献等级
silences_ftjh  LV10 11月15日
tiancj  LV1 11月14日
wsy123--  LV1 11月14日
Luck_ZDM  LV12 11月13日
3993zby  LV2 11月11日
zetman 11月11日
暂无贡献等级
二十一画  LV10 11月11日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友