文档库--搜索
This commit is contained in:
+2
-1
@@ -10,6 +10,7 @@ import io.swagger.annotations.ApiOperation;
|
|||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
@@ -71,7 +72,7 @@ public class DocumentSearchController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation(value="全部查询", notes="全部查询")
|
@ApiOperation(value="全部查询", notes="全部查询")
|
||||||
@GetMapping(value = "/getFullTextInfoList")
|
@PostMapping(value = "/getFullTextInfoList")
|
||||||
public Result<?> getFullTextInfoList(@RequestBody SearchVO searchVO) {
|
public Result<?> getFullTextInfoList(@RequestBody SearchVO searchVO) {
|
||||||
IPage pageInfo = iDocumentSearchService.getFullTextInfoList(searchVO);
|
IPage pageInfo = iDocumentSearchService.getFullTextInfoList(searchVO);
|
||||||
return Result.OK(pageInfo);
|
return Result.OK(pageInfo);
|
||||||
|
|||||||
Reference in New Issue
Block a user