weixin.popular.bean.bizwifi.base.ShopInfo 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.base;
/**
* @ProjectName weixin-popular
* @Author: zeroJun
* @Date: 2018/7/24 11:44
* @Description:
*/
public class ShopInfo {
private Integer shop_id;
private String ssid;
private String password;
public Integer getShop_id() {
return shop_id;
}
public void setShop_id(Integer shop_id) {
this.shop_id = shop_id;
}
public String getSsid() {
return ssid;
}
public void setSsid(String ssid) {
this.ssid = ssid;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}