package com.hx.hxchat.otto; /** * 通知服务获取环信的群聊信息到数据库 * @author huyan * */ public class GetHxInfoNoticeEvent { private boolean needRefresh; private String groupId; public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public boolean isNeedRefresh() { return needRefresh; } public void setNeedRefresh(boolean needRefresh) { this.needRefresh = needRefresh; } }