package com.ruoyi.tjfx.service; import com.ruoyi.tjfx.entity.TjfxAnalysisDataDTO; import java.util.List; import java.util.Map; public interface TjfxAnalysisDataService { List> selectByProductCode(TjfxAnalysisDataDTO tjfxAnalysisDataDTO) throws Exception; Map> select(TjfxAnalysisDataDTO tjfxAnalysisDataDTO) throws Exception; List> selectMonth(TjfxAnalysisDataDTO tjfxAnalysisDataDTO) throws Exception; Map selectByProductAndShopAndSpecification(TjfxAnalysisDataDTO tjfxAnalysisDataDTO) throws Exception; }