package com.linghu.service; import com.linghu.model.common.ResponseResult; import com.linghu.model.dto.ExportFeedDTO; import com.linghu.model.dto.ExportGetResultByPlatformIdDTO; import com.linghu.model.dto.ExportGetResultDTO; import com.linghu.model.dto.ExportStaticsDTO; import com.linghu.model.entity.Keyword; import com.baomidou.mybatisplus.extension.service.IService; import com.linghu.model.excel.FeedExportExcel; import com.linghu.model.vo.GetTimeVO; import com.linghu.model.vo.KeywordStaticsListVO; import com.linghu.model.vo.PlatformProportionVO; import com.linghu.model.vo.ResultListVO; import org.springframework.http.ResponseEntity; import org.springframework.web.multipart.MultipartFile; import java.util.List; /** * @author xy * @description 针对表【keyword】的数据库操作Service * @createDate 2025-07-04 20:17:33 */ public interface KeywordService extends IService { ResponseResultstatics(Integer keywordId, Integer questionId); ResponseResult> getResultByTypeId(Integer keywordId, Integer questionId, Integer typeId); ResponseResult> getResultByPlatformId(Integer keywordId, Integer questionId, Integer platformId); List getKeywordsByOrderId(String orderId); ResponseResult getTimeVOResponseResult(Integer keywordId, Integer questionId); ResponseEntity exportEChart(ExportStaticsDTO exportStaticsDTO); ResponseResult> getByTypeId(Integer keywordId, Integer questionId, Integer typeId, Integer isNow); ResponseEntity exportResult(ExportGetResultDTO dto); ResponseResult> getResultByPlatform(Integer keywordId, Integer questionId, Integer platformId, Integer isNow); ResponseEntity exportResultByPlatform(ExportGetResultByPlatformIdDTO dto); ResponseEntity exportResultByPlatform2(ExportGetResultByPlatformIdDTO dto); ResponseResult> importFeedByKeyWord(Integer keywordId, MultipartFile file); ResponseEntity exportFeedResult(ExportFeedDTO dto); ResponseEntity downloadKeywrodFeed(); }