
org.jeewx.api.third.AuthorizerSetOptionRet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin4j Show documentation
Show all versions of weixin4j Show documentation
微信和钉钉开发SDK,主要提供微信、企业微信、钉钉的JAVA封装,降低集成难度,让API变简单
The newest version!
package org.jeewx.api.third;
/**
* 设置选项返回结果
* 成功返回 errcode":0,"errmsg":"ok"
*/
public class AuthorizerSetOptionRet {
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy