chong

历史课程成绩

> env.url: `https`://api[api-online.test].boxfish.cn
>
> notes:
>
* `默认所有接口都要携带token` access_token
# 历史课程成绩查询接口
* URL {env.url}/report/clazz/group/{groupId}/lesson/{lesson}/total/completion
* GET Method
* path 参数:
|参数名 | 类型 | 必填 | 说明 | 示例 |
|-------------|--------|------|----------|------|
| groupId | Long | Y |班级id| classSmallId |
* request 参数:
|参数名 | 类型 | 必填 | 说明 | 示例 |
|-------------|--------|------|----------|------|
| paper | bool | Y |是否是纸质课程| |
* response:
httpcode:404 没有课程成绩
httpcode:200
|参数名 | 类型 | 必填 | 说明 | 示例 |
|-------------|--------|------|----------|------|
| total_completion | List | Y |排行榜 |
* total_completion
|参数名 | 类型 | 必填 | 说明 | 示例 |
|-------------|--------|------|----------|------|
| user_id | String | Y |用户id| |
| user_english_name | String | N |用户英文名,外教课时展示 | |
| user_real_name | String | Y |用户姓名 |
| figure_url | String | N |用户头像 |
| star | String | N |五星 | "1" |
```json
{
"total_completion":[{
"user_id": 100000008807,
"user_real_name": "周",
"figure_url": "https://avatars.boxfish.cn/user/1298889/figure/1467366361.jpg",
"paper_rate_score": 0,
"total_completion_grade": 0.8,
"star": "1"
}]
}
```
\ No newline at end of file
... ...