huayandong

update doc api

  1 +[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](https://996.icu)
  2 +
  3 +
  4 +### 内容研发做课APP 功能接口
  5 +
  6 +
  7 +##### 1. 【新接口,只有在内容研发做课APP上使用】根据书名,模糊查询书列表接口
  8 +
  9 +- URL: {{localhost}}/boxfish-wudaokou-paper/paper/manage/develop/getDevelopBook?access_token=76oRwgOqPb&folderName=智能四会单词课 教科版
  10 +- Method: GET
  11 +- RequestParam:
  12 +
  13 +参数 | 类型 | 说明
  14 + :--- | :--- | :---
  15 +folderName | string | 书的文件夹名
  16 +
  17 +- ResponseBody:
  18 +
  19 +```json5
  20 +{
  21 + "status": "SUCCESS",
  22 + "bookList": [
  23 + {
  24 + "bookId": 298,
  25 + "bookName": "教科版三起三年级上2", // 书名
  26 + "folderName": "智能四会单词课 教科版三起三年级上2", // 书的文件夹名
  27 + "bookCover": "ec62d845c9b1ea1c8f10736cfc368240", // 书封面
  28 + "paperAmount": 19 // 书中课数量
  29 + }
  30 + ]
  31 +}
  32 +```
  33 +
  34 +> 查询状态`status`,`status=SUCCESS`表示查询成功,`status=ERROR`表示查询失败。