首页>代码>基于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);
    }

}
最近下载更多
chenke59520  LV1 1小时前
罗清晨  LV13 11月3日
最代码官方  LV168 11月2日
最近浏览更多
chenke59520  LV1 1小时前
lyszz59520 1小时前
暂无贡献等级
南国夏天 昨天
暂无贡献等级
gzcznb  LV8 昨天
Boss绝  LV9 昨天
shaohuaqingfu  LV3 昨天
是数据库  LV3 昨天
MrReady  LV14 前天
xiaozhi丶  LV15 11月4日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友