package com.fjsdfx.starerp.annoucement.model; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import java.io.Serializable; import java.util.Date; /** * @author Chen_Luqiang * */ @Entity public class Annoucement implements Serializable { /** * ID */ private Integer id; /** * 标题 */ private String title; /** * 内容 */ private String content; /** *日期 */ private Date date; @Id @GeneratedValue public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } @Column(length=10000) public String getContent() { return content; } public void setContent(String content) { this.content = content; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } }

wuying8208 LV15
2023年1月1日
17852310375 LV3
2021年4月27日
and123456 LV11
2021年4月20日
ddqddqddq LV14
2020年9月5日
jiangjian LV9
2020年2月16日
河流没有影子 LV4
2019年9月5日
aaaa1233565 LV4
2019年4月25日
tyqqqqqqq LV5
2019年3月24日
xk9587 LV16
2019年3月11日
sunyekai LV3
2018年9月2日