book-cloud
    • 读者
      • 读者登录
        POST
      • 读者注册
        POST
      • 查询读者信息
        POST
      • 更新读者信息
        POST
      • 删除读者
        DELETE
    • 管理员
      • 管理员登录
        POST
      • 管理员注册
        POST
      • 更新管理员信息
        PUT
    • 书籍
      • 书籍分页查询
        POST
      • 删除书籍
        DELETE
      • 添加书籍
        POST
      • 更新书籍信息
        PUT
      • 更新图书库存
        PUT
    • 借阅
      • 查询用户借阅记录
      • 用户借阅图书
      • 归还书籍
      • 删除借阅记录
      • 批量删除借阅记录
      • 查询指定书号借阅记录
    • 通用
      • logout
    • 数据模型
      • Book
      • Result«Book»
      • PageResult«List«Book»»
      • Admin
      • Reader
      • Condition
      • AdminVo
      • Result«Reader»
      • Result«String»
      • Result«AdminVo»
      • BorrowVo
      • Result«String»
      • Result«List«BorrowVo»»
      • Result«List«Reader»»
      • ReaderVo
      • Result«ReaderVo»
      • Borrow
      • LoginDto

    Result«List«BorrowVo»»

    {
        "code": 0,
        "msg": "string",
        "data": [
            {
                "id": 0,
                "bookName": "string",
                "isbn": "string",
                "readerId": 0,
                "borrowDate": "string",
                "returnDate": "string",
                "dueDate": "string",
                "status": true
            }
        ]
    }
    Built with