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