
org.jeewx.api.third.AuthorizerOptionRet 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;
/**
* 选项设置信息返回实体
*/
public class AuthorizerOptionRet {
//授权公众号appid
private String authorizer_appid;
//选项名
private String option_name;
//选项值
private String option_value;
public String getAuthorizer_appid() {
return authorizer_appid;
}
public void setAuthorizer_appid(String authorizer_appid) {
this.authorizer_appid = authorizer_appid;
}
public String getOption_name() {
return option_name;
}
public void setOption_name(String option_name) {
this.option_name = option_name;
}
public String getOption_value() {
return option_value;
}
public void setOption_value(String option_value) {
this.option_value = option_value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy