| | |
| | | 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 |
| | |
| | | */ |
| | | 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); |
| | | } |