package com.bdyjy.entity.notice; import java.io.Serializable; public class NoticeContentById implements Serializable { /** * */ private static final long serialVersionUID = 6667884631944606699L; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getCatid() { return catid; } public void setCatid(String catid) { this.catid = catid; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getSourcefrom() { return sourcefrom; } public void setSourcefrom(String sourcefrom) { this.sourcefrom = sourcefrom; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public static long getSerialversionuid() { return serialVersionUID; } String id; String catid; String title; String date; String sourcefrom; String content; }