package com.jiuqi.mobile.nigo.comeclose.bean.app.news; import com.jiuqi.mobile.nigo.comeclose.bean.NiGoBean; public class NewUnReadBean extends NiGoBean { // @DBColumn(comment = "用户guid",id=true) private String userGuid; // @DBColumn(comment = "消息guid",id=true) private String newsGuid; // @DBColumn(comment = "消息类型:1.公告通知") private int type; public String getUserGuid() { return userGuid; } public void setUserGuid(String userGuid) { this.userGuid = userGuid; } public String getNewsGuid() { return newsGuid; } public void setNewsGuid(String newsGuid) { this.newsGuid = newsGuid; } public int getType() { return type; } public void setType(int type) { this.type = type; } }