package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2018/1/18.
|
*/
|
|
public class Message implements Serializable {
|
|
@Expose
|
private String id;
|
@Expose
|
private String title;
|
@Expose
|
private String content;
|
@Expose
|
private String createTime;
|
@Expose
|
private String isOpen;
|
|
public String getIsOpen() {
|
return isOpen;
|
}
|
|
public void setIsOpen(String isOpen) {
|
this.isOpen = isOpen;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
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 getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
}
|