书籍信息的分页查询
POST
/book责任人: 未设置
请求参数
Body 参数application/json
bookName
string
可选
author
string
可选
isbn
string
可选
number
integer
可选
currentPage
integer
可选
pageSize
integer
可选
示例
{
"bookName": "string",
"author": "string",
"isbn": "string",
"number": 0,
"currentPage": 0,
"pageSize": 0
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
可选
msg
string
可选
total
integer <int64>
可选
默认值:
0
data
array[object (Book) {6}]
可选
isbn
string
可选
title
string
可选
cover
string
可选
introduction
string
可选
number
integer
可选
author
string
可选
示例
{
"code": 0,
"msg": "",
"total": 0,
"data": [
{
"isbn": "",
"title": "",
"cover": "",
"introduction": "",
"number": 0,
"author": ""
}
]
}
最后修改时间: 18 days ago