添加文档库id查询接口
This commit is contained in:
+8
@@ -523,4 +523,12 @@ public class BussDocumentLibraryEOController extends JeroController<BussDocument
|
|||||||
int count = bussDocumentLibraryEOService.updateES();
|
int count = bussDocumentLibraryEOService.updateES();
|
||||||
return Result.OK(count);
|
return Result.OK(count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ApiOperation(value="根据ID查询文档库数据", notes="根据ID查询文档库数据")
|
||||||
|
@GetMapping(value = "/queryListByIds")
|
||||||
|
public Result<?> queryListByIds(String ids,String cut) {
|
||||||
|
List<Map<String,Object>> res = bussDocumentLibraryEOService.queryListByIds(ids);
|
||||||
|
return Result.OK(res);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user