puzhibing
2023-02-24 b4d8cb69ff3a3d35a10a7e5c487ff683b31cc9f1
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
package com.stylefeng.guns.modular.system.controller.resp;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
/**
 * @author ck
 * @ClassName RespBody
 * @Description
 * @date 2023-02-23 11:44
 */
public class RespBody {
    @JsonProperty("errcode")
    private Integer errorCode;
 
    @JsonProperty("errmsg")
    private String errorMsg;
 
    public Integer getErrorCode() {
        return errorCode;
    }
 
    public void setErrorCode(Integer errorCode) {
        this.errorCode = errorCode;
    }
 
    public String getErrorMsg() {
        return errorMsg;
    }
 
    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }
}