weixin.popular.bean.bizwifi.homepage.get.HomePageGetResultData 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.
The newest version!
package weixin.popular.bean.bizwifi.homepage.get;
/**
* @ProjectName weixin-popular
* @Author: zeroJun
* @Date: 2018/7/24 17:00
* @Description:
*/
public class HomePageGetResultData {
private Integer shop_id;
private Integer template_id;
private String url;
public Integer getShop_id() {
return shop_id;
}
public void setShop_id(Integer shop_id) {
this.shop_id = shop_id;
}
public Integer getTemplate_id() {
return template_id;
}
public void setTemplate_id(Integer template_id) {
this.template_id = template_id;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}