ISysNoticeService.cs 356 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using ZR.Model.System;
  4. namespace ZR.Service.System.IService
  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. }
  16. }