weixin.popular.bean.material.MaterialBatchgetResult 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.material;
import java.util.List;
import weixin.popular.bean.BaseResult;
public class MaterialBatchgetResult extends BaseResult{
private String total_count;
private String item_count;
private List item;
public String getTotal_count() {
return total_count;
}
public void setTotal_count(String total_count) {
this.total_count = total_count;
}
public String getItem_count() {
return item_count;
}
public void setItem_count(String item_count) {
this.item_count = item_count;
}
public List getItem() {
return item;
}
public void setItem(List item) {
this.item = item;
}
}