From 89f8649e8cf9bc12b9e29abb0adc4f9b77273143 Mon Sep 17 00:00:00 2001 From: guyue <1721849008@qq.com> Date: 星期二, 08 七月 2025 09:07:44 +0800 Subject: [PATCH] 第三方接口 --- src/main/java/com/linghu/service/KeywordService.java | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/linghu/service/KeywordService.java b/src/main/java/com/linghu/service/KeywordService.java index 10a3ae7..145a70c 100644 --- a/src/main/java/com/linghu/service/KeywordService.java +++ b/src/main/java/com/linghu/service/KeywordService.java @@ -1,7 +1,13 @@ package com.linghu.service; +import com.linghu.model.common.ResponseResult; import com.linghu.model.entity.Keyword; import com.baomidou.mybatisplus.extension.service.IService; +import com.linghu.model.vo.KeywordStaticsListVO; +import com.linghu.model.vo.PlatformProportionVO; +import com.linghu.model.vo.ResultListVO; + +import java.util.List; /** * @author xy @@ -10,4 +16,10 @@ */ public interface KeywordService extends IService<Keyword> { + ResponseResult<KeywordStaticsListVO> statics(Integer keywordId, Integer questionId); + + ResponseResult<List<PlatformProportionVO>> getResultByTypeId(Integer keywordId, Integer questionId, Integer typeId); + + ResponseResult<List<ResultListVO>> getResultByPlatformId(Integer keywordId, Integer questionId, Integer platformId); + List<Keyword> getKeywordsByOrderId(String orderId); } -- Gitblit v1.7.1