huayandong

add api-学习课表的增加 和 移除接口

@@ -264,3 +264,48 @@ private Boolean flagClassClosed; // 是否已结课:true查询已结束的 @@ -264,3 +264,48 @@ private Boolean flagClassClosed; // 是否已结课:true查询已结束的
264 "amountEvaluationStudent": 0 // 评价GOOD的学生人数 264 "amountEvaluationStudent": 0 // 评价GOOD的学生人数
265 } 265 }
266 ``` 266 ```
  267 +
  268 +
  269 +##### 10. 小班课,增加学习课表
  270 +- URL: {{localhost}}/boxfish-online-card/classSmall/manager/addLearnCourseSchedule
  271 +- Method: POST
  272 +- RequestBody:
  273 +
  274 +```json
  275 +{
  276 + "operationAccount": "dev@boxfish.cn",
  277 + "date": "2019-04-11",
  278 + "classSmallName": "BOXFISH-0408",
  279 + "learnCourseList": [
  280 + {
  281 + "type": "KNOWLEDGE",
  282 + "learnCourseId": ""
  283 + },
  284 + {
  285 + "type": "KNOWLEDGE_1P1",
  286 + "learnCourseId": ""
  287 + },
  288 + {
  289 + "type": "READING",
  290 + "learnCourseId": ""
  291 + }
  292 + ]
  293 +}
  294 +```
  295 +
  296 +
  297 +##### 11. 小班课,移除学习课表
  298 +- URL: {{localhost}}/boxfish-online-card/classSmall/manager/removeAppCourseSchedule
  299 +- Method: POST
  300 +- RequestBody
  301 +
  302 +```json
  303 +{
  304 + "operationAccount":"xxx@boxfish.cn",
  305 +
  306 + "classSmallId":18,
  307 + "grade":"GRADE_4_B",
  308 + "learnCourseId":"courseId-4年级下单词课1",
  309 + "learnCourseType":"WORD"
  310 +}
  311 +```