Files
shgx_tz_mes_backend_sync/server/ZR.Model/System/Dto/SysNoticeDto.cs
xiaowei.song 127c428a9e 油漆
2024-06-06 13:19:24 +08:00

30 lines
793 B
C#

using System.ComponentModel.DataAnnotations;
namespace ZR.Model.System.Dto
{
/// <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; }
}
}