You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
819 B

package com.community.pocket.data.model;
/**
* 公告信息
*/
public class Notice {
//公告标题
private String title;
//公告内容
private String content;
//公告人
private String author;
//公告时间
private Long time;
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 getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public Long getTime() {
return time;
}
public void setTime(Long time) {
this.time = time;
}
}