| | |
| | | package com.mzl.flower.service.report; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mzl.flower.dto.request.report.QueryAppSupplierDTO; |
| | | import com.mzl.flower.dto.request.report.QueryOrderDTO; |
| | | import com.mzl.flower.dto.request.report.QuerySupplierDTO; |
| | | import com.mzl.flower.dto.request.report.QueryPartnerOrderDTO; |
| | | import com.mzl.flower.dto.response.report.OrderDetailReportResultVO; |
| | | import com.mzl.flower.dto.response.report.OrderPartnerReportResultVO; |
| | | import com.mzl.flower.dto.response.report.OrderReportResultVO; |
| | | import com.mzl.flower.dto.response.report.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | |
| | | OrderPartnerReportResultVO getPartnerSaleStatis(QueryPartnerOrderDTO dto); |
| | | |
| | | void exportPartnerSalesList(HttpServletResponse response, QueryPartnerOrderDTO dto); |
| | | |
| | | Page<OrderSupplierReportResultVO> getOrderSupplierPage(Page page, QuerySupplierDTO dto); |
| | | |
| | | OrderSupplierReportResultVO getOrderSupplierClout(QuerySupplierDTO dto); |
| | | |
| | | void exportSupplierList(HttpServletResponse response, QuerySupplierDTO dto); |
| | | |
| | | |
| | | /** |
| | | * 获取App供应商那个统计数据 |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | AppSupplierStatisticsVO getAppSupplierStatistics(QueryAppSupplierDTO dto); |
| | | |
| | | } |