IAppReportRepository.cs 685 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using Datory;
  6. namespace GxPress.Repository.Interface.AppReport
  7. {
  8. public interface IAppReportRepository:IRepository
  9. {
  10. Task<int> InsertAsync(Entity.AppReport appReport);
  11. Task<bool> UpdateAsync(Entity.AppReport appReport);
  12. Task<IEnumerable<Entity.AppReport>> GetAppReportListAsync();
  13. Task<bool> DeleteAsyncTask(int id);
  14. /// <summary>
  15. /// 根据type查询数据
  16. /// </summary>
  17. /// <param name="reportType"></param>
  18. /// <returns></returns>
  19. Task<Entity.AppReport> GetAppReport(int reportType);
  20. }
  21. }