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

weixin.popular.bean.shakearound.relation.search.RelationSearchResultData Maven / Gradle / Ivy

Go to download

The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.

There is a newer version: 2.8.32
Show newest version
/**
 * 
 */
package weixin.popular.bean.shakearound.relation.search;

import java.util.List;

import com.alibaba.fastjson.annotation.JSONField;


/**
 * 微信摇一摇周边-查询设备与页面的关联关系-响应参数-关联信息
 * @author Moyq5
 * @date 2016年7月26日
 */
public class RelationSearchResultData {

	/**
	 * 关联关系列表
	 */
	private List relations;
	
	/**
	 * 设备或页面的关联关系总数
	 */
	@JSONField(name = "total_count")
	private Integer totalCount;

	/**
	 * @return 关联关系列表
	 */
	public List getRelations() {
		return relations;
	}

	/**
	 * @param relations 关联关系列表
	 */
	public void setRelations(List relations) {
		this.relations = relations;
	}

	/**
	 * @return 设备或页面的关联关系总数
	 */
	public Integer getTotalCount() {
		return totalCount;
	}

	/**
	 * @param totalCount 设备或页面的关联关系总数
	 */
	public void setTotalCount(Integer totalCount) {
		this.totalCount = totalCount;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy