SysNoticeDto.cs 869 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.Serialization;
  4. using Newtonsoft.Json;
  5. using ZR.Model.Models;
  6. namespace ZR.Model.System.Dto
  7. {
  8. /// <summary>
  9. /// 通知公告表输入对象
  10. /// </summary>
  11. public class SysNoticeDto
  12. {
  13. public int NoticeId { get; set; }
  14. public string NoticeTitle { get; set; }
  15. public string NoticeType { get; set; }
  16. public string NoticeContent { get; set; }
  17. public string Status { get; set; }
  18. public string Remark { get; set; }
  19. }
  20. /// <summary>
  21. /// 通知公告表查询对象
  22. /// </summary>
  23. public class SysNoticeQueryDto : PagerInfo
  24. {
  25. public string NoticeTitle { get; set; }
  26. public string NoticeType { get; set; }
  27. public string CreateBy { get; set; }
  28. public string Status { get; set; }
  29. }
  30. }