IBiSnapshotApplication.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using Hotline.Share.Dtos;
  2. using Hotline.Share.Dtos.Snapshot;
  3. using Microsoft.AspNetCore.Http;
  4. using SqlSugar;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace Hotline.Application.Snapshot;
  11. public interface IBiSnapshotApplication
  12. {
  13. /// <summary>
  14. /// 热点类型小统计
  15. /// </summary>
  16. /// <param name="dto"></param>
  17. /// <returns></returns>
  18. ISugarQueryable<HotspotStatisticsOutDto> GetHotspotStatistics(HotspotStatisticsInDto dto);
  19. ISugarQueryable<HotspotStatisticsDetailsOutDto> HotspotStatisticsDetail(HotspotStatisticsDetailsInDto dto);
  20. IList<RedPackStatisticsOutDto> GetRedPackAuditStatistics(RedPackStatisticsInDto dto);
  21. ISugarQueryable<RedPackStatisticsDetailsOutDto> GetRedPackAuditStatisticsDetails(RedPackStatisticsDetailsInDto dto);
  22. Task<SnapshotStatisticsOutDto> GetSnapshotStatisticsAsync(SnapshotStatisticsInDto dto, CancellationToken token);
  23. ISugarQueryable<SnapshotStatisticsDetailOutDto> GetSnapshotStatisticsDetail(SnapshotStatisticsDetailInDto dto);
  24. /// <summary>
  25. /// 办件统计-随手拍
  26. /// </summary>
  27. /// <param name="dto"></param>
  28. /// <returns></returns>
  29. ISugarQueryable<SnapshotProcessingStatisticsOutDto> GetSnapshotProcessingStatistics(SnapshotProcessingStatisticsInDto dto);
  30. /// <summary>
  31. /// 办件统计明细-随手拍
  32. /// </summary>
  33. /// <param name="dto"></param>
  34. /// <returns></returns>
  35. ISugarQueryable<SnapshotProcessingStatisticsDetailsOutDto> GetSnapshotProcessingStatisticsDetails(SnapshotProcessingStatisticsDetailsInDto dto);
  36. }