maven
9 天以前 f82cee1c3e8ff2d7fd62f01f6dfe4ea2b9d5e7d1
src/main/java/com/ruoyi/warehouse/controller/DocumentationBorrowManagementController.java
@@ -57,7 +57,7 @@
    @GetMapping("/getByDocumentationId/{id}")
    @ApiOperation("根据书籍id查询借阅记录")
    @Log(title = "根据书籍id查询借阅记录", businessType = BusinessType.OTHER)
    public AjaxResult getByDocumentationId(@PathVariable("id") Long id) {
    public AjaxResult getByDocumentationId(@PathVariable Long id) {
        return AjaxResult.success(documentationBorrowManagementService.selectByDocumentationId(id));
    }
    @PostMapping("/add")