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