huayandong

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

... ... @@ -264,3 +264,48 @@ private Boolean flagClassClosed; // 是否已结课:true查询已结束的
"amountEvaluationStudent": 0 // 评价GOOD的学生人数
}
```
##### 10. 小班课,增加学习课表
- URL: {{localhost}}/boxfish-online-card/classSmall/manager/addLearnCourseSchedule
- Method: POST
- RequestBody:
```json
{
"operationAccount": "dev@boxfish.cn",
"date": "2019-04-11",
"classSmallName": "BOXFISH-0408",
"learnCourseList": [
{
"type": "KNOWLEDGE",
"learnCourseId": ""
},
{
"type": "KNOWLEDGE_1P1",
"learnCourseId": ""
},
{
"type": "READING",
"learnCourseId": ""
}
]
}
```
##### 11. 小班课,移除学习课表
- URL: {{localhost}}/boxfish-online-card/classSmall/manager/removeAppCourseSchedule
- Method: POST
- RequestBody
```json
{
"operationAccount":"xxx@boxfish.cn",
"classSmallId":18,
"grade":"GRADE_4_B",
"learnCourseId":"courseId-4年级下单词课1",
"learnCourseType":"WORD"
}
```
\ No newline at end of file
... ...