1
zj
2024-06-13 8eea5be3b36875bd4ffe70e6c3a5bb07b1d829bf
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
package com.yami.trading.common.web;
 
import java.io.Serializable;
 
public class ResultObject implements Serializable {
    private static final long serialVersionUID = 6952247764513362272L;
    private String code = "0";
    private String msg;
    private Object data;
    // private Object info;
 
    public String getCode() {
        return this.code;
    }
 
    public ResultObject setCode(String code) {
        this.code = code;
        return this;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public ResultObject setMsg(String msg) {
        this.msg = msg;
        return this;
    }
 
    public Object getData() {
        return data;
    }
 
    public ResultObject setData(Object data) {
        this.data = data;
        return this;
    }
 
    // public Object getInfo() {
    //     return info;
    // }
 
    // public void setInfo(Object info) {
    //     this.info = info;
    // }
 
}