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

weixin.popular.bean.shakearound.page.search.PageSearchResultData 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.shakearound.page.search;

import java.util.List;

import weixin.popular.bean.shakearound.page.PageInfo;

import com.alibaba.fastjson.annotation.JSONField;

/**
 * 微信摇一摇周边-页面管理-查询页面列表-响应参数-页面列表数据
 * @author Moyq5
 * @date 2016年7月26日
 */
public class PageSearchResultData {

	/**
	 * 页面列表
	 */
	private List pages;
	
	/**
	 * 商户名下的页面总数
	 */
	@JSONField(name = "total_count")
	private Integer totalCount;

	/**
	 * @return 页面列表
	 */
	public List getPages() {
		return pages;
	}

	/**
	 * @param pages 页面列表
	 */
	public void setPages(List pages) {
		this.pages = pages;
	}

	/**
	 * @return 商户名下的页面总数
	 */
	public Integer getTotalCount() {
		return totalCount;
	}

	/**
	 * @param totalCount 商户名下的页面总数
	 */
	public void setTotalCount(Integer totalCount) {
		this.totalCount = totalCount;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy