|
@@ -41,8 +41,7 @@ public class SearchController {
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@ApiOperation(value = "静态知识检索[by:zhoutg]",
|
|
@ApiOperation(value = "静态知识检索[by:zhoutg]",
|
|
- notes = "inputStr:检索内容,必填<br>" +
|
|
|
|
- "inputIds:需要去重的id<br>")
|
|
|
|
|
|
+ notes = "inputStr:检索内容,必填")
|
|
@PostMapping("/getStaticKnowledge")
|
|
@PostMapping("/getStaticKnowledge")
|
|
@SysLogger("getStaticKnowledge")
|
|
@SysLogger("getStaticKnowledge")
|
|
public RespDTO<List<RetrievalDTO>> getStaticKnowledge(@Valid @RequestBody GetStaticVO getStaticVO){
|
|
public RespDTO<List<RetrievalDTO>> getStaticKnowledge(@Valid @RequestBody GetStaticVO getStaticVO){
|
|
@@ -56,7 +55,8 @@ public class SearchController {
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@ApiOperation(value = "量表搜索[by:zhoutg]",
|
|
@ApiOperation(value = "量表搜索[by:zhoutg]",
|
|
- notes = "")
|
|
|
|
|
|
+ notes = "name:检索内容,必填<br>" +
|
|
|
|
+ "filterName:需要过滤的名称")
|
|
@PostMapping(value = "/getScale")
|
|
@PostMapping(value = "/getScale")
|
|
public RespDTO<List<ScaleIndexDTO>> index(@Valid @RequestBody ScaleIndexVO scaleIndexVO){
|
|
public RespDTO<List<ScaleIndexDTO>> index(@Valid @RequestBody ScaleIndexVO scaleIndexVO){
|
|
return RespDTO.onSuc(searchFacade.index(scaleIndexVO));
|
|
return RespDTO.onSuc(searchFacade.index(scaleIndexVO));
|