首页>代码>基于Spring Boot+Layui+mybatis开发垃圾分类管理系统>/garbage-collection-project/src/main/java/com/garbage/demo/common/Result.java
package com.garbage.demo.common;

import lombok.Data;

@Data
public class Result<T> {
    /**
     * 错误码
     */
    private Integer code;
    /**
     * 提示信息
     */
    private String msg;
    /**
     * 返回的具体内容
     */
    private Integer count;

    private T data;

    public Result(Integer code, String msg) {
        this.code = code;
        this.msg = msg;
    }
    public Result setData(T data) {
        this.data = data;
        return this;
    }
    public Result setData(T data,Integer count) {
        this.data = data;
        this.count = count;
        return this;
    }
    public Result setMsg(String msg) {
        this.msg = msg;
        return this;
    }

    public static Result getSuccess() {
        return new Result(200,"成功");
    }
    public static Result getFailure() {
        return new Result(400,"失败");
    } }
最近下载更多
krispeng  LV13 9月30日
计科一班  LV7 6月19日
TY0165  LV20 6月17日
203163  LV5 6月15日
f22m1a2b2  LV17 5月31日
yiipheartbeat  LV2 4月19日
sun丶孙  LV8 4月6日
黎子寒  LV1 4月2日
zhb666  LV8 3月12日
duon12  LV1 2023年9月25日
最近浏览更多
sbsjsk 10月24日
暂无贡献等级
krispeng  LV13 9月30日
黄志琴  LV1 9月29日
yimaoermao  LV1 9月14日
kgl234  LV2 8月17日
暂无贡献等级
17380184110 6月20日
暂无贡献等级
计科一班  LV7 6月19日
fengst 6月18日
暂无贡献等级
TY0165  LV20 6月17日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友