12345678910111213141516 |
- package com.bowintek.practice.services.service;
- import com.bowintek.practice.model.EsRelationLog;
- import com.bowintek.practice.vo.Analyze.ComparisonResult;
- import com.bowintek.practice.vo.EsQueryLogVo;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- public interface QueryLogService {
- PageInfo<EsQueryLogVo> getQueryGroupList(Integer page, Integer rows, String queryText);
- List<EsQueryLogVo> getHotspotList(Integer maxRows);
- List<EsQueryLogVo> getQueryList(String queryText);
- int save(String queryText, String userId);
- List<EsRelationLog> getRelationLogList(String well_common_name);
- }
|