com.github.houbb.web.common.dto.resp.BaseResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-common Show documentation
Show all versions of web-common Show documentation
The web-common tool for java.
package com.github.houbb.web.common.dto.resp;
import java.io.Serializable;
/**
* @author binbin.hou
* @since 0.0.1
*/
public class BaseResp implements Serializable {
/**
* 错误编码
* @since 0.0.1
*/
private String respCode;
/**
* 错误信息
* @since 0.0.1
*/
private String respMessage;
public String getRespCode() {
return respCode;
}
public void setRespCode(String respCode) {
this.respCode = respCode;
}
public String getRespMessage() {
return respMessage;
}
public void setRespMessage(String respMessage) {
this.respMessage = respMessage;
}
}