NoticeInput.cs 873 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // 大名科技(天津)有限公司 版权所有
  2. //
  3. // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
  4. //
  5. // 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动
  6. //
  7. // 任何基于本项目二次开发而产生的一切法律纠纷和责任,均与作者无关
  8. namespace Admin.NET.Core.Service;
  9. public class PageNoticeInput : BasePageInput
  10. {
  11. /// <summary>
  12. /// 标题
  13. /// </summary>
  14. public virtual string Title { get; set; }
  15. /// <summary>
  16. /// 类型(1通知 2公告)
  17. /// </summary>
  18. public virtual NoticeTypeEnum? Type { get; set; }
  19. }
  20. public class AddNoticeInput : SysNotice
  21. {
  22. }
  23. public class UpdateNoticeInput : AddNoticeInput
  24. {
  25. }
  26. public class DeleteNoticeInput : BaseIdInput
  27. {
  28. }
  29. public class NoticeInput : BaseIdInput
  30. {
  31. }