1234567891011121314151617181920212223242526 |
- package com.steerinfo.dil.mapper;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- import java.util.Map;
- /**
- * 统计报表
- * @ author :TXF
- * @ time :2021/12/14 15:27
- */
- @Mapper
- public interface StatisticalReportMapper {
- //查询采购统计报表 (辅料、燃料、内转、化工材料)
- List<Map<String, Object>> getAllPurchaseFLRLReport(Map<String, Object> map);
- //查询销售统计报表
- List<Map<String, Object>> getAllSaleReport(Map<String, Object> map);
- // 查询零星物资进厂统计报表
- List<Map<String, Object>> getSporadicSuppliesReport1(Map<String, Object> mapValue);
- // 查询零星物资出厂统计报表
- List<Map<String, Object>> getSporadicSuppliesReport2(Map<String, Object> mapValue);
- }
|