cloudroam
2025-03-31 6a570e438ef2565ade370d9beb73670c5cbc39fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.mzl.flower.service.statisticsAnalysis;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mzl.flower.dto.request.statisticAnalysis.FlowerMaterialDTO;
import com.mzl.flower.dto.request.statisticAnalysis.FlowerSaleDTO;
import com.mzl.flower.dto.response.statisticAnalysis.FlowerMaterialStaticVO;
import com.mzl.flower.dto.response.statisticAnalysis.FlowerSaleStatisticVO;
import com.mzl.flower.dto.response.statisticAnalysis.FlowerMaterialVO;
import com.mzl.flower.dto.response.statisticAnalysis.FlowerSaleVO;
 
import javax.servlet.http.HttpServletResponse;
 
 
public interface StatisticAnalysisService {
 
    Page<FlowerMaterialVO> getFlowerMaterialPage(Page page, FlowerMaterialDTO dto);
 
    FlowerMaterialStaticVO getFlowerMaterialStatis(FlowerMaterialDTO dto);
 
    void exportFlowerMaterialSales(HttpServletResponse response, FlowerMaterialDTO dto);
 
 
    Page<FlowerSaleVO> getFlowerSalePage(Page page, FlowerSaleDTO dto);
 
    FlowerSaleStatisticVO getFlowerSaleStatistics(FlowerSaleDTO dto);
 
    void exportFlowerSales(HttpServletResponse response, FlowerSaleDTO dto);
}