
org.jeewx.api.third.AuthorizerOption 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 AuthorizerOption {
//第三方平台appid
private String component_appid;
//授权公众号appid
private String authorizer_appid;
//选项名称
private String option_name;
public String getComponent_appid() {
return component_appid;
}
public void setComponent_appid(String component_appid) {
this.component_appid = component_appid;
}
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy