weixin.popular.bean.bizwifi.openplugin.OpenPluginTokenResultData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.bizwifi.openplugin;
/**
* @ProjectName weixin-popular
* @Author: zeroJun
* @Date: 2018/7/24 16:36
* @Description:
*/
public class OpenPluginTokenResultData {
private Boolean is_open;
private String wifi_token;
public Boolean getIs_open() {
return is_open;
}
public void setIs_open(Boolean is_open) {
this.is_open = is_open;
}
public String getWifi_token() {
return wifi_token;
}
public void setWifi_token(String wifi_token) {
this.wifi_token = wifi_token;
}
}