cc.jinglupeng.wechat.bean.group.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wechat Show documentation
Show all versions of wechat Show documentation
this is a java lib for wechat develop.
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;
}
}