package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class SystemMessage implements Serializable {
|
@Expose
|
String id;
|
@Expose
|
boolean solved;
|
@Expose
|
String title;
|
@Expose
|
String content;
|
@Expose
|
String timeTag;
|
@Expose
|
String createTime;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public boolean isSolved() {
|
return solved;
|
}
|
|
public void setSolved(boolean solved) {
|
this.solved = solved;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getTimeTag() {
|
return timeTag;
|
}
|
|
public void setTimeTag(String timeTag) {
|
this.timeTag = timeTag;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
}
|