文档库--参数接收

This commit is contained in:
zhn
2022-03-15 16:30:47 +08:00
parent 04efd2ad6f
commit bb048bc79c
@@ -65,10 +65,7 @@ public class DocumentSearchController {
@ApiOperation(value="列表查询", notes="列表查询")
@GetMapping(value = "/getInfoList")
public Result<?> getInfoList(@RequestParam(name="map",required=false) Map<String,Object> map) {
map =new HashMap<>();
// map.put("_source","serial_number");
// map.put("_source","implement_time");
public Result<?> getInfoList(@RequestParam Map<String,Object> map) {
JSONObject infoList = iDocumentSearchService.getInfoList(map);
return Result.OK(infoList);
}