cloudroam
2025-03-31 f060439c675cb9185252cfc8f034853290863c62
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.mzl.flower.mapper.statisticsAnalysis;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mzl.flower.dto.request.statisticAnalysis.FlowerSaleDTO;
import com.mzl.flower.dto.response.statisticAnalysis.FlowerSaleStatisticVO;
import com.mzl.flower.dto.response.statisticAnalysis.FlowerSaleVO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface SalesStatisticsAnalysisMapper {
 
    Page<FlowerSaleVO> getFlowerSalePage(Page page, @Param("dto") FlowerSaleDTO dto);
 
    FlowerSaleStatisticVO getFlowerSaleStatistics(@Param("dto") FlowerSaleDTO dto);
 
    List<FlowerSaleVO> getFlowerSaleSList(@Param("dto") FlowerSaleDTO dto);
 
}