weixin.popular.bean.BaseResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean;
/**
* 微信请求状态数据
*
* @author LiYi
*/
public class BaseResult {
private static final String SUCCESS_CODE = "0";
private String errcode;
private String errmsg;
public BaseResult() {
}
public BaseResult(String errcode, String errmsg) {
this.errcode = errcode;
this.errmsg = errmsg;
}
public String getErrcode() {
return errcode;
}
public void setErrcode(String errcode) {
this.errcode = errcode;
}
public String getErrmsg() {
return errmsg;
}
public void setErrmsg(String errmsg) {
this.errmsg = errmsg;
}
public boolean isSuccess() {
return errcode == null || errcode.isEmpty() || errcode.equals(SUCCESS_CODE);
}
}