IStatisticalReportService.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.steerinfo.dil.service;
  2. import java.util.List;
  3. import java.util.Map;
  4. /**
  5. * 查询汽运统计报表
  6. * @ author :TXF
  7. * @ time :2021/12/14 15:25
  8. */
  9. public interface IStatisticalReportService {
  10. //查询辅料燃料统计报表
  11. List<Map<String, Object>> getRLFLReport(Map<String, Object> map);
  12. //查询采购统计报表 (辅料、燃料、内转)
  13. List<Map<String, Object>> getAllPurchaseFLRLReport(Map<String, Object> map);
  14. //查询销售统计报表
  15. List<Map<String, Object>> getAllSaleReport(Map<String, Object> map);
  16. //查询销售统计报表
  17. List<Map<String, Object>> getAllSaleReportNum(Map<String, Object> map);
  18. // 查询零星物资统计报表
  19. List<Map<String, Object>> getSporadicSuppliesReportNum1(Map<String, Object> mapValue);
  20. // 查询零星物资统计报表
  21. List<Map<String, Object>> getSporadicSuppliesReport1(Map<String, Object> mapValue);
  22. // 查询零星物资统计报表
  23. List<Map<String, Object>> getSporadicSuppliesReportNum2(Map<String, Object> mapValue);
  24. // 查询零星物资统计报表
  25. List<Map<String, Object>> getSporadicSuppliesReport2(Map<String, Object> mapValue);
  26. List<Map<String, Object>> getPurInwardReport(Map<String, Object> mapValue);
  27. List<Map<String, Object>> getLXInwardReport( Map<String, Object> mapValue);
  28. //查看内转统计报表
  29. List<Map<String, Object>> getInwardReport(Map<String, Object> mapValue);
  30. List<Map<String, Object>> getLoading(Map<String, Object> mapValue);
  31. List<Map<String, Object>> getUnLoading(Map<String, Object> mapValue);
  32. List<Map<String, Object>> getLoaderResult(Map<String, Object> mapValue);
  33. }