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