Files
shgx_tz_mes_backend_sync/ZR.Model/System/Dto/SysNoticeDto.cs

30 lines
793 B
C#
Raw Normal View History

2023-06-01 15:06:41 +08:00
using System.ComponentModel.DataAnnotations;
2022-03-06 14:26:05 +08:00
namespace ZR.Model.System.Dto
2021-12-15 16:12:22 +08:00
{
/// <summary>
/// 通知公告表输入对象
/// </summary>
public class SysNoticeDto
{
public int NoticeId { get; set; }
2023-06-01 15:06:41 +08:00
[Required]
2021-12-15 16:12:22 +08:00
public string NoticeTitle { get; set; }
2023-06-01 15:06:41 +08:00
public int NoticeType { get; set; }
2021-12-15 16:12:22 +08:00
public string NoticeContent { get; set; }
2023-06-01 15:06:41 +08:00
public int Status { get; set; }
2021-12-15 16:12:22 +08:00
public string Remark { get; set; }
}
/// <summary>
/// 通知公告表查询对象
/// </summary>
2022-03-06 14:26:05 +08:00
public class SysNoticeQueryDto : PagerInfo
2021-12-15 16:12:22 +08:00
{
public string NoticeTitle { get; set; }
2023-06-01 15:06:41 +08:00
public int? NoticeType { get; set; }
2021-12-15 16:12:22 +08:00
public string CreateBy { get; set; }
2023-06-01 15:06:41 +08:00
public int? Status { get; set; }
2021-12-15 16:12:22 +08:00
}
}