package com.steerinfo.dil.service; import java.util.List; import java.util.Map; /** * 查询汽运统计报表 * @ author :TXF * @ time :2021/12/14 15:25 */ public interface IStatisticalReportService { //查询辅料燃料统计报表 List> getRLFLReport(Map map); //查询采购统计报表 (辅料、燃料、内转) List> getAllPurchaseFLRLReport(Map map); //查询销售统计报表 List> getAllSaleReport(Map map); //查询销售统计报表 List> getAllSaleReportNum(Map map); // 查询零星物资统计报表 List> getSporadicSuppliesReportNum1(Map mapValue); // 查询零星物资统计报表 List> getSporadicSuppliesReport1(Map mapValue); // 查询零星物资统计报表 List> getSporadicSuppliesReportNum2(Map mapValue); // 查询零星物资统计报表 List> getSporadicSuppliesReport2(Map mapValue); List> getPurInwardReport(Map mapValue); List> getLXInwardReport( Map mapValue); //查看内转统计报表 List> getInwardReport(Map mapValue); List> getLoading(Map mapValue); List> getUnLoading(Map mapValue); List> getLoaderResult(Map mapValue); }