using System.ComponentModel.DataAnnotations; using ZR.Model; namespace ZR.ServiceCore.Model.Dto { /// /// 通知公告表输入对象 /// public class SysNoticeDto { public int NoticeId { get; set; } [Required] public string NoticeTitle { get; set; } public int NoticeType { get; set; } public string NoticeContent { get; set; } public int Status { get; set; } public string Remark { get; set; } } /// /// 通知公告表查询对象 /// public class SysNoticeQueryDto : PagerInfo { public string NoticeTitle { get; set; } public int? NoticeType { get; set; } public string CreateName { get; set; } public int? Status { get; set; } } }