53 lines
1.2 KiB
Java
53 lines
1.2 KiB
Java
package com.ubt.jimu.message;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class JimuMessage {
|
|
public static final String MSG_TYPE_COMMUNITY = "2";
|
|
public static final String MSG_TYPE_INFO = "3";
|
|
public static final String MSG_TYPE_USER = "1";
|
|
public static final int NOT_READ = 0;
|
|
public static final int READED = 1;
|
|
public static final String TYPE_ACTIVITY = "activity";
|
|
public static final String TYPE_FANS = "fans";
|
|
public static final String TYPE_POST = "post";
|
|
private String content;
|
|
private long createTime;
|
|
private String icon;
|
|
private long id;
|
|
private int isRead;
|
|
private String link;
|
|
private int type;
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public long getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public String getIcon() {
|
|
return this.icon;
|
|
}
|
|
|
|
public long getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public int getIsRead() {
|
|
return this.isRead;
|
|
}
|
|
|
|
public String getLink() {
|
|
return this.link;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public void setIsRead(int i) {
|
|
this.isRead = i;
|
|
}
|
|
}
|