NoticeInput.cs 503 B

123456789101112131415161718192021222324252627282930
  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. public class AddNoticeInput : SysNotice
  14. {
  15. }
  16. public class UpdateNoticeInput : AddNoticeInput
  17. {
  18. }
  19. public class DeleteNoticeInput : BaseIdInput
  20. {
  21. }
  22. public class NoticeInput : BaseIdInput
  23. {
  24. }