weixin.popular.bean.message.GetIndustryResult 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.message;
import weixin.popular.bean.BaseResult;
public class GetIndustryResult extends BaseResult{
private Industry primary_industry;
private Industry secondary_industry;
public Industry getPrimary_industry() {
return primary_industry;
}
public void setPrimary_industry(Industry primary_industry) {
this.primary_industry = primary_industry;
}
public Industry getSecondary_industry() {
return secondary_industry;
}
public void setSecondary_industry(Industry secondary_industry) {
this.secondary_industry = secondary_industry;
}
}