huayandong

update doc api

[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](https://996.icu)
### 内容研发做课APP 功能接口
##### 1. 【新接口,只有在内容研发做课APP上使用】根据书名,模糊查询书列表接口
- URL: {{localhost}}/boxfish-wudaokou-paper/paper/manage/develop/getDevelopBook?access_token=76oRwgOqPb&folderName=智能四会单词课 教科版
- Method: GET
- RequestParam:
参数 | 类型 | 说明
:--- | :--- | :---
folderName | string | 书的文件夹名
- ResponseBody:
```json5
{
"status": "SUCCESS",
"bookList": [
{
"bookId": 298,
"bookName": "教科版三起三年级上2", // 书名
"folderName": "智能四会单词课 教科版三起三年级上2", // 书的文件夹名
"bookCover": "ec62d845c9b1ea1c8f10736cfc368240", // 书封面
"paperAmount": 19 // 书中课数量
}
]
}
```
> 查询状态`status`,`status=SUCCESS`表示查询成功,`status=ERROR`表示查询失败。
\ No newline at end of file
... ...