From 91735f6452dca94bcc8782b4a7551a64b1e465e6 Mon Sep 17 00:00:00 2001 From: guyue <1721849008@qq.com> Date: 星期五, 11 七月 2025 16:32:26 +0800 Subject: [PATCH] token --- src/main/java/com/linghu/service/KeywordService.java | 23 +++++++++++++++++++---- 1 files changed, 19 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/linghu/service/KeywordService.java b/src/main/java/com/linghu/service/KeywordService.java index 10a3ae7..a54cf4f 100644 --- a/src/main/java/com/linghu/service/KeywordService.java +++ b/src/main/java/com/linghu/service/KeywordService.java @@ -1,13 +1,28 @@ 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 -* @description 针对表【keyword】的数据库操作Service -* @createDate 2025-07-04 20:17:33 -*/ + * @author xy + * @description 针对表【keyword】的数据库操作Service + * @createDate 2025-07-04 20:17:33 + */ 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); + + Boolean saveKeywords(String keywords, String order_id); } -- Gitblit v1.7.1