com.baidu.haotianjing.core.response.BaseResponse Maven / Gradle / Ivy
package com.baidu.haotianjing.core.response;
import com.fasterxml.jackson.annotation.JsonProperty;
public class BaseResponse {
@JsonProperty("ret_code")
private String retCode;
@JsonProperty("ret_msg")
private String retMsg;
public String getRetCode() {
return retCode;
}
public void setRetCode(String retCode) {
this.retCode = retCode;
}
public String getRetMsg() {
return retMsg;
}
public void setRetMsg(String retMsg) {
this.retMsg = retMsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy