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

weixin.popular.bean.shakearound.device.search.DeviceSearchResultData 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.43
Show 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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy