ISysNoticeService.cs 484 B

1234567891011121314151617181920
  1. using ZR.Model;
  2. using ZR.Model.System;
  3. using ZR.Model.System.Dto;
  4. namespace ZR.ServiceCore.Services
  5. {
  6. /// <summary>
  7. /// 通知公告表service接口
  8. ///
  9. /// @author zr
  10. /// @date 2021-12-15
  11. /// </summary>
  12. public interface ISysNoticeService : IBaseService<SysNotice>
  13. {
  14. List<SysNotice> GetSysNotices();
  15. PagedInfo<SysNotice> GetPageList(SysNoticeQueryDto parm);
  16. PagedInfo<SysNoticeDto> ExportList(SysNoticeQueryDto parm);
  17. }
  18. }