chong

Updates 未整理/客户端相关配置接口/yong-hu-xue-qi.md

Auto commit by GitBook Editor
... ... @@ -17,12 +17,100 @@ GET请求
| | 类型 | 必填 | 说明 | 示例 |
| :--- | :--- | :--- | :--- | :--- |
| multiword | map | 是 | 词义相关数据 | |
| phrase | map | 是 | 短句相关数据 | |
| course | map | 是 | 课程相关数据 | |
| semesterReport | map | 是 | 学期预期学习报告 | |
| type | String | 是 | 饼图类型 | |
| name | String | 是 | 饼图显示名字 | |
| list | List | 是 | 饼图内数据 | |
| text | String | 是 | 饼图内个部显示文字 | |
| color | String | 是 | 颜色16进制 | \#98ce02 |
| scale | Long | 是 | 百分比 | 10 |
####
```
[
{
"type": "class_situation",
"name": "上课情况",
"list": [
{
"text": "外教1对1",
"color": "#98ce02",
"scale": 0
},
{
"text": "中教1对1",
"color": "#999999",
"scale": 0
},
{
"text": "外教小班课",
"color": "#fc6346",
"scale": 0
},
{
"text": "外教大讲堂",
"color": "#ff8401",
"scale": 0
},
{
"text": "外教口语指导",
"color": "#fcc101",
"scale": 0
},
{
"text": "自主学习",
"color": "#21abff",
"scale": 100
}
]
},
{
"type": "course_structures",
"name": "课程结构",
"list": [
{
"text": "功能语言短对话",
"color": "#fbd358",
"scale": 2
},
{
"text": "场景对话及运用",
"color": "#fd7156",
"scale": 1
},
{
"text": "阅读能力综合",
"color": "#8dd06b",
"scale": 30
},
{
"text": "词汇及用法",
"color": "#46beed",
"scale": 26
},
{
"text": "其它",
"color": "#929292",
"scale": 41
}
]
},
{
"type": "excellence_course",
"name": "培优课程",
"list": [
{
"text": "教材同步",
"color": "#70c9ff",
"scale": 9
},
{
"text": "培优课程",
"color": "#ff6d3b",
"scale": 91
}
]
}
]
```
#### 成功返回值
... ...