parent
5514f029e8
commit
09b9be24d8
@ -0,0 +1,56 @@ |
||||
package com.community.pocket.entity.vo; |
||||
|
||||
/** |
||||
* 公告 |
||||
*/ |
||||
public class NoticeVo { |
||||
private String id; |
||||
//公告标题
|
||||
private String title; |
||||
//公告内容
|
||||
private String content; |
||||
//公告人
|
||||
private String author; |
||||
//公告时间
|
||||
private Long time; |
||||
|
||||
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 getAuthor() { |
||||
return author; |
||||
} |
||||
|
||||
public void setAuthor(String author) { |
||||
this.author = author; |
||||
} |
||||
|
||||
public Long getTime() { |
||||
return time; |
||||
} |
||||
|
||||
public void setTime(Long time) { |
||||
this.time = time; |
||||
} |
||||
} |
Loading…
Reference in new issue