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

weixin.popular.bean.shakearound.device.group.getdetail.DeviceGroupGetDetail 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 com.alibaba.fastjson.annotation.JSONField;

/**
 * 微信摇一摇周边-查询分组详情-请求参数
 * @author Moyq5
 * @date 2016年7月30日
 */
public class DeviceGroupGetDetail {

	/**
	 * 分组唯一标识,全局唯一
* 必填 */ @JSONField(name = "group_id") private Integer groupId; /** * 分组里设备的起始索引值
* 必填 */ private Integer begin; /** * 待查询的分组里设备的数量,不能超过1000个
* 必填 */ private Integer count; /** * @return 分组唯一标识 */ public Integer getGroupId() { return groupId; } /** * 分组唯一标识,全局唯一
* 必填 * @param groupId 分组唯一标识 */ public void setGroupId(Integer groupId) { this.groupId = groupId; } /** * @return 分组里设备的起始索引值 */ public Integer getBegin() { return begin; } /** * 分组里设备的起始索引值
* 必填 * @param begin 分组里设备的起始索引值 */ public void setBegin(Integer begin) { this.begin = begin; } /** * @return 待查询的分组里设备的数量 */ public Integer getCount() { return count; } /** * 待查询的分组里设备的数量,不能超过1000个
* 必填 * @param count 待查询的分组里设备的数量 */ public void setCount(Integer count) { this.count = count; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy