zmc
2023-11-23 a15f3dccec3c370f90005068350173768a5e222d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.flightfeather.monitor.pojo;
 
 
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Result {
    private Integer code;//响应码,1 代表成功; 0 代表失败
    private String msg;  //响应信息 描述字符串
    private Object data; //返回的数据
 
    //增删改 成功响应
    public static Result success() {
        return new Result(1, "success", null);
    }
 
    //查询 成功响应
    public static Result success(Object data) {
        return new Result(1, "success", data);
    }
 
    //失败响应
    public static Result error(String msg) {
        return new Result(0, msg, null);
    }
}