
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 jeewx-api Show documentation
Show all versions of jeewx-api Show documentation
JEEWX-API(微信极速SDK、同时支持微信公众号\企业微信\支付窗\小程序\微博).
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