weixin.popular.bean.shakearound.device.search.DeviceSearchResultData 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.device.search;
import java.util.List;
import com.alibaba.fastjson.annotation.JSONField;
/**
* 微信摇一摇周边-设备管理-查询设备列表-响应参数-设备信息
* @author Moyq5
* @date 2016年7月26日
*/
public class DeviceSearchResultData {
/**
* 设备列表
*/
private List devices;
/**
* 商户名下的设备总量
*/
@JSONField(name = "total_count")
private Integer totalCount;
/**
* @return 设备列表
*/
public List getDevices() {
return devices;
}
/**
* @param devices 设备列表
*/
public void setDevices(List devices) {
this.devices = devices;
}
/**
* @return 商户名下的设备总量
*/
public Integer getTotalCount() {
return totalCount;
}
/**
* @param totalCount 商户名下的设备总量
*/
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
}