文档库--参数接收
This commit is contained in:
+1
-4
@@ -65,10 +65,7 @@ public class DocumentSearchController {
|
|||||||
|
|
||||||
@ApiOperation(value="列表查询", notes="列表查询")
|
@ApiOperation(value="列表查询", notes="列表查询")
|
||||||
@GetMapping(value = "/getInfoList")
|
@GetMapping(value = "/getInfoList")
|
||||||
public Result<?> getInfoList(@RequestParam(name="map",required=false) Map<String,Object> map) {
|
public Result<?> getInfoList(@RequestParam Map<String,Object> map) {
|
||||||
map =new HashMap<>();
|
|
||||||
// map.put("_source","serial_number");
|
|
||||||
// map.put("_source","implement_time");
|
|
||||||
JSONObject infoList = iDocumentSearchService.getInfoList(map);
|
JSONObject infoList = iDocumentSearchService.getInfoList(map);
|
||||||
return Result.OK(infoList);
|
return Result.OK(infoList);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user