StatisticalReportMapper.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.steerinfo.dil.mapper;
  2. import org.apache.ibatis.annotations.Mapper;
  3. import java.math.BigDecimal;
  4. import java.util.List;
  5. import java.util.Map;
  6. /**
  7. * 统计报表
  8. * @ author :TXF
  9. * @ time :2021/12/14 15:27
  10. */
  11. @Mapper
  12. public interface StatisticalReportMapper {
  13. //查询采购统计报表 (辅料、燃料、内转、化工材料)
  14. List<Map<String, Object>> getAllPurchaseFLRLReport(Map<String, Object> map);
  15. //查询采购辅料统计报表
  16. List<Map<String, Object>> getFuPurchaseFLRLReport(Map<String, Object> map);
  17. //查询销售统计报表
  18. List<Map<String, Object>> getAllSaleReport(Map<String, Object> map);
  19. // 查询零星物资进厂统计报表
  20. List<Map<String, Object>> getSporadicSuppliesReport1(Map<String, Object> mapValue);
  21. // 查询零星物资出厂统计报表
  22. List<Map<String, Object>> getSporadicSuppliesReport2(Map<String, Object> mapValue);
  23. // 查询采购内转统计报表
  24. List<Map<String, Object>> getTotalResultList();
  25. List<Map<String, Object>> getInwardReportResult(Map<String,Object> mapValue);
  26. }