Digital Office Automation System Backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TjfxAnalysisDataService.java 613B

1234567891011121314151617181920212223
  1. package com.ruoyi.tjfx.service;
  2. import com.ruoyi.tjfx.entity.TjfxAnalysisDataDTO;
  3. import java.util.List;
  4. import java.util.Map;
  5. public interface TjfxAnalysisDataService {
  6. List<Map<String, Object>> selectByProductCode(TjfxAnalysisDataDTO tjfxAnalysisDataDTO) throws Exception;
  7. Map<String, List<String>> select(TjfxAnalysisDataDTO tjfxAnalysisDataDTO) throws Exception;
  8. List<Map<String, Object>> selectMonth(TjfxAnalysisDataDTO tjfxAnalysisDataDTO) throws Exception;
  9. Map<String, Object> selectByProductAndShopAndSpecification(TjfxAnalysisDataDTO tjfxAnalysisDataDTO) throws Exception;
  10. }