AjaxResultLisenes.java
1.45 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.huaheng.framework.web.domain;
import java.io.Serializable;
import java.util.List;
import com.alibaba.fastjson.JSON;
import lombok.Data;
/**
 * 操作消息提醒
 *
 * @author huaheng
 */
@Data
public class AjaxResultLisenes<T> implements Serializable
{
    private static final long serialVersionUID = 1L;
    public Boolean success;
    public int code;
    List<Object> result;
    public String msg;
    public Boolean hasErr(){
        if(code == RetCode.SUCCESS.getValue()){
            return false;
        }else {
            if(success){
                return false;
            }
            return true;
        }
    }
    public AjaxResultLisenes<T> setCode(RetCode retCode) {
        this.code = retCode.getValue();
        return this;
    }
    public int getCode() {
        return code;
    }
    public AjaxResultLisenes<T> setCode(int code) {
        this.code = code;
        return this;
    }
    public String getMsg() {
        return msg;
    }
    public AjaxResultLisenes<T> setMsg(String msg) {
        this.msg = msg;
        return this;
    }
//    public T getResult() {
//        return result;
//    }
//
//    public AjaxResultLisenes<T> setResult(T result) {
//        this.result = result;
//        if(this.result.toString().equals("[]")){
//            this.result=null;
//        }
//        return this;
//    }
    @Override
    public String toString() {
        return JSON.toJSONString(this);
    }
}