package com.kidgrow.searchcenter.client.feign;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.kidgrow.common.constant.ServiceNameConstants;
|
import com.kidgrow.common.model.PageResult;
|
import com.kidgrow.searchcenter.client.feign.fallback.SearchServiceFallbackFactory;
|
import com.kidgrow.searchcenter.model.SearchDto;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.*;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
*
|
* @Description: 搜索客户端FeignClient接口<br>
|
* @Project: <br>
|
* @CreateDate: Created in 2020/2/24 12:13 <br>
|
* @Author: <a href="4345453@kidgrow.com">liuke</a>
|
*/
|
@FeignClient(name = ServiceNameConstants.SEARCH_SERVICE, fallbackFactory = SearchServiceFallbackFactory.class, decode404 = true)
|
public interface SearchService {
|
/**
|
* 查询文档列表
|
* @param indexName 索引名
|
* @param searchDto 搜索Dto
|
*/
|
@PostMapping(value = "/search/{indexName}")
|
PageResult<JSONObject> strQuery(@PathVariable("indexName") String indexName, @RequestBody SearchDto searchDto);
|
}
|