zj
2024-03-27 533f1b6ba44f398d1860a95e38589fbc13d60d44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.example.common;
 
 
public enum ResponseCode {
    SUCCESS(0, "SUCCESS"),
    ERROR(1, "ERROR"),
    NEED_LOGIN(10, "NEED_LOGIN"),
    ILLEGAL_ARGUMENT(2, "ILLEGAL_ARGUMENT");
    private int code;
    private String msg;
 
    ResponseCode(int code, String msg) {
        this.code = code;
        this.msg = msg;
    }
 
    public int getCode() {
        return this.code;
    }
 
    public String getMsg() {
        return this.msg;
    }
}