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

cc.jinglupeng.wechat.bean.group.Group Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package cc.jinglupeng.wechat.bean.group;

import java.io.Serializable;

/**
 * 组
 * 
 * @author jinglupeng.cc
 */
public class Group implements Serializable {

	private static final long serialVersionUID = 1L;

	private String id; // 分组id,由微信分配
	private String name; // 分组名字,UTF8编码
	private Long count; // 分组内用户数量

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Long getCount() {
		return count;
	}

	public void setCount(Long count) {
		this.count = count;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy