Toggle navigation
Toggle navigation
This project
Loading...
Sign in
liuming
/
developer-docs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
chong
2019-09-18 19:36:30 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fa742a5f8ce41ffea01cc0ef0358249dd5163eba
fa742a5f
1 parent
776797fa
增加测试数据
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
0 deletions
中教版/班级智能课程完成情况接口.md
中教版/班级智能课程完成情况接口.md
View file @
fa742a5
...
...
@@ -25,6 +25,8 @@
|-------------|--------|------|----------|------|
| star | String | Y | unfinished 代表未完成 0-5 等级 | |
| list | List | Y | 学生列表 | |
| order | int | Y | 排序列(忽略) | |
* 学生完成情况数据
...
...
@@ -42,6 +44,59 @@
| total_completion_grade | double | Y | 总评价 | |
| unfinished | boolean | Y | 是否完成 true未完成 | |
| completion_grade | String | N | 听说评级 | |
```
json
[
{
"star": "5",
"list":
[
{
"user_id": 9200,
"user_real_name": "吕寰",
"figure_url": "https://avatars.boxfish.cn/user/9200/figure/1516946382.jpg",
"is_app": true,
"review_class": true,
"is_paper": true,
"completion_grade": "A_PLUS",
"completion_grade_source": 100,
"paper_rate_score": 100,
"user_review_class_comment": "EXCELLENT",
"total_completion_grade": 5,
"unfinished": false
}],
"order": 5
},
{
"star": "4",
"list":
[
{
"user_id": 7566,
"user_real_name": "盒子鱼哦",
"figure_url": "https://avatars.boxfish.cn/user/7566/figure/1563170627.jpg",
"is_app": true,
"review_class": true,
"is_paper": true,
"completion_grade": "A_PLUS",
"completion_grade_source": 100,
"paper_rate_score": 86,
"user_review_class_comment": "GREAT",
"total_completion_grade": 4.22,
"unfinished": false
}],
"order": 4
},
{
"star": "unfinished",
"list":
[
{
"user_id": 3916,
"user_real_name": "盒子",
"figure_url": "https://avatars.boxfish.cn/user/3916/figure/1424449210.jpg",
"is_app": true,
"review_class": true,
"is_paper": true,
"total_completion_grade": 0,
"unfinished": true
}],
"order": -1
}
]
```
...
...
Please
register
or
login
to post a comment