NoticeInput.cs 525 B

1234567891011121314151617181920212223242526272829303132
  1. namespace Admin.NET.Core.Service;
  2. public class PageNoticeInput : BasePageInput
  3. {
  4. /// <summary>
  5. /// 标题
  6. /// </summary>
  7. public virtual string Title { get; set; }
  8. /// <summary>
  9. /// 类型(1通知 2公告)
  10. /// </summary>
  11. public virtual NoticeTypeEnum Type { get; set; }
  12. }
  13. [NotTable]
  14. public class AddNoticeInput : SysNotice
  15. {
  16. }
  17. [NotTable]
  18. public class UpdateNoticeInput : AddNoticeInput
  19. {
  20. }
  21. public class DeleteNoticeInput : BaseIdInput
  22. {
  23. }
  24. public class NoticeInput : BaseIdInput
  25. {
  26. }