Commit 5614cf2f by 徐高华

企微托管账号

parent 315d7acb
package com.gic.haoban.manage.service.pojo;
import java.io.Serializable;
public class QwOpenResultBO implements Serializable {
private int errcode ;
private String errmsg ;
private Object data ;
public int getErrcode() {
return errcode;
}
public void setErrcode(int errcode) {
this.errcode = errcode;
}
public String getErrmsg() {
return errmsg;
}
public void setErrmsg(String errmsg) {
this.errmsg = errmsg;
}
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
public boolean isOk() {
return this.errcode == 0 ;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment