All Downloads are FREE. Search and download functionalities are using the official Maven repository.

weixin.popular.bean.material.MaterialBatchgetResult Maven / Gradle / Ivy

Go to download

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.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;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy