IStoreStatisticsApplicationService.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Abp.Application.Services;
  7. using Abp.Application.Services.Dto;
  8. using IwbZero.AppServiceBase;
  9. using ShwasherSys.Common.Dto;
  10. using ShwasherSys.ProductStoreInfo;
  11. using ShwasherSys.StoreQuery.Dto;
  12. namespace ShwasherSys.StoreQuery
  13. {
  14. public interface IStoreStatisticsApplicationService: IIwbAsyncCrudAppService<ViewEnterOutProductStoreDto, string, PagedRequestDto, ViewEnterOutProductStoreDto, ViewEnterOutProductStoreDto>
  15. {
  16. Task<List<ViewEnterOutProductStore>> QueryProductEnterOutRecord(string productNo);
  17. Task<PagedResultDto<ViewEnterOutLogCus>> QueryEnterOutRecord(PagedRequestDto input);
  18. Task<PagedResultDto<ViewCurrentStoreTotal>> QueryCurrentStoreTotal(PagedRequestDto input);
  19. Task<ViewCurrentStoreTotal> QueryStoreTotalByProduct(string pcProductNo);
  20. Task<string> ExportExcel(List<MultiSearchDtoExt> input);
  21. Task<List<ViewEnterOutProductStore>> QueryEnterOutRecordTmp(List<MultiSearchDtoExt> input);
  22. Task<List<ViewEnterOutSemiProductStore>> QuerySemiEnterOutRecord(string productNo);
  23. Task<PagedResultDto<ViewCurrentSemiStoreTotal>> QuerySemiCurrentStoreTotal(PagedRequestDto input);
  24. Task<ViewCurrentSemiStoreTotal> QuerySemiCurrentStoreTotalByProduct(string pcProductNo);
  25. }
  26. }