package com.steerinfo.dil.mapper; import org.apache.ibatis.annotations.Mapper; import java.math.BigDecimal; import java.util.List; import java.util.Map; /** * 统计报表 * @ author :TXF * @ time :2021/12/14 15:27 */ @Mapper public interface StatisticalReportMapper { //查询采购统计报表 (辅料、燃料、内转、化工材料) List> getAllPurchaseFLRLReport(Map map); //查询采购辅料统计报表 List> getFuPurchaseFLRLReport(Map map); //查询销售统计报表 List> getAllSaleReport(Map map); // 查询零星物资进厂统计报表 List> getSporadicSuppliesReport1(Map mapValue); // 查询零星物资出厂统计报表 List> getSporadicSuppliesReport2(Map mapValue); // 查询采购内转统计报表 List> getTotalResultList(); List> getInwardReportResult(Map mapValue); //查看内转统计报表 List> getInwardReport(Map mapValue); //查看装货点统计表 List> getLoading(Map mapValue); List> getUnLoading(Map mapValue); List> getLXReportResult(Map mapValue); //获取装机统计报表 List> getLoaderResult(Map map); //保卫部随机抽查车牌号 List> getCapacityByDefend(Map map); //拼装车统计报表 List> getInwardReportForAssemble(Map mapValue); //判断是否装机备注 List> getCapacityRemark(Map map); List> getLoaderForResultDetail(Map mapValue); }