com.tmsps.ne4weixin.bean.BaseResultBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ne4weixin Show documentation
Show all versions of ne4weixin Show documentation
Ne4WeiXin For Spring is good :)
package com.tmsps.ne4weixin.bean;
import java.io.Serializable;
import com.alibaba.fastjson.JSON;
public class BaseResultBean implements Serializable {
private static final long serialVersionUID = -7298213510049209380L;
private Integer errcode;
private String errmsg;
public Integer getErrcode() {
return errcode;
}
public void setErrcode(Integer errcode) {
this.errcode = errcode;
}
public String getErrmsg() {
return errmsg;
}
public void setErrmsg(String errmsg) {
this.errmsg = errmsg;
}
public String toJSON(){
return JSON.toJSONString(this);
}
}