weixin.popular.bean.poi.Poi 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.poi;
/**
* 门店信息-提交对象
*
* @author Moyq5
*
*/
public class Poi {
private Business business;
public Poi() {
}
public Poi(Business business) {
this.business = business;
}
public Business getBusiness() {
return business;
}
public void setBusiness(Business business) {
this.business = business;
}
}