StatisticalReportMapper.java 784 B

1234567891011121314151617181920212223242526
  1. package com.steerinfo.dil.mapper;
  2. import org.apache.ibatis.annotations.Mapper;
  3. import java.util.List;
  4. import java.util.Map;
  5. /**
  6. * 统计报表
  7. * @ author :TXF
  8. * @ time :2021/12/14 15:27
  9. */
  10. @Mapper
  11. public interface StatisticalReportMapper {
  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>> getSporadicSuppliesReport1(Map<String, Object> mapValue);
  18. // 查询零星物资出厂统计报表
  19. List<Map<String, Object>> getSporadicSuppliesReport2(Map<String, Object> mapValue);
  20. }