weixin.popular.bean.shakearound.relation.search.RelationSearchResultData 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.
The 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;
}
}