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;
|
}
|
}
|