using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class NoticeItem { /// /// ID /// public string NoticeId { get; set; } /// /// 编号 /// public string NoticeCode { get; set; } /// /// 标题 /// public string NoticeTitle { get; set; } /// /// 发布日期 /// public string ReleaseDate { get; set; } /// /// 主要内容 /// public string MainContent { get; set; } /// /// 附件路径 /// public string AttachUrl { get; set; } /// /// 是否阅读 /// public bool IsRead { get; set; } } }