文档库--搜索

This commit is contained in:
zhn
2022-03-21 15:20:17 +08:00
parent 6d880a638b
commit e1c48cf63a
@@ -10,6 +10,7 @@ import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
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.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
@@ -71,7 +72,7 @@ public class DocumentSearchController {
}
@ApiOperation(value="全部查询", notes="全部查询")
@GetMapping(value = "/getFullTextInfoList")
@PostMapping(value = "/getFullTextInfoList")
public Result<?> getFullTextInfoList(@RequestBody SearchVO searchVO) {
IPage pageInfo = iDocumentSearchService.getFullTextInfoList(searchVO);
return Result.OK(pageInfo);