30 lines
795 B
C#
Raw Normal View History

2024-05-16 13:30:30 +08:00
using System.ComponentModel.DataAnnotations;
2024-07-01 16:04:10 +08:00
namespace DOAN.Model.System.Dto
2024-05-16 13:30:30 +08:00
{
/// <summary>
/// 通知公告表输入对象
/// </summary>
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; }
}
/// <summary>
/// 通知公告表查询对象
/// </summary>
public class SysNoticeQueryDto : PagerInfo
{
public string NoticeTitle { get; set; }
public int? NoticeType { get; set; }
public string CreateBy { get; set; }
public int? Status { get; set; }
}
}