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

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

import com.alibaba.fastjson.annotation.JSONField;

/**
 * 微信摇一摇周边-新增分组-请求参数
 * @author Moyq5
 * @date 2016年7月30日
 */
public class DeviceGroupAdd {

	/**
	 * 分组名称,不超过100汉字或200个英文字母
* 必填 */ @JSONField(name = "group_name") private String groupName; /** * 分组名称,不超过100汉字或200个英文字母 * @return 分组名称 */ public String getGroupName() { return groupName; } /** * 分组名称,不超过100汉字或200个英文字母
* 必填 * @param groupName 分组名称 */ public void setGroupName(String groupName) { this.groupName = groupName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy