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