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

weixin.popular.bean.shakearound.device.group.getdetail.DeviceGroupGetDetailResultData 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.group.getdetail;

import java.util.List;

import com.alibaba.fastjson.annotation.JSONField;

import weixin.popular.bean.shakearound.device.group.GroupInfo;

/**
 * 微信摇一摇周边-查询分组详情-响应参数-分组详情
 * @author Moyq5
 * @date 2016年7月30日
 */
public class DeviceGroupGetDetailResultData extends GroupInfo {

	/**
	 * 此分组现有的总设备数
	 */
	@JSONField(name = "total_count")
	private Integer totalCount;
	
	/**
	 * 分组下的设备列表
	 */
	private List devices;

	/**
	 * @return 此分组现有的总设备数
	 */
	public Integer getTotalCount() {
		return totalCount;
	}

	/**
	 * @param totalCount 此分组现有的总设备数
	 */
	public void setTotalCount(Integer totalCount) {
		this.totalCount = totalCount;
	}

	/**
	 * @return 分组下的设备列表
	 */
	public List getDevices() {
		return devices;
	}

	/**
	 * @param devices 分组下的设备列表
	 */
	public void setDevices(List devices) {
		this.devices = devices;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy