guyue
4 天以前 89f8649e8cf9bc12b9e29abb0adc4f9b77273143
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
*/
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);
}