tj
2025-04-17 add52b2fce633d62fb6cf829cc9ee58cb3727257
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);
 
}