课表/系列课组合课信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>课表/系列课组合课信息接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>course/class_section</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>课程id</td>
</tr>
<tr>
<td style="text-align: left;">type</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>1=直播课,2=录播课,3=系列课,4=组合课</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> { //不同课程类型data返回的信息会不同
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok&quot;,
&quot;data&quot;: [ //直播课/录播课
{
&quot;id&quot;: 158, //章节id
&quot;course_id&quot;: &quot;88&quot; //课程id
&quot;title&quot;: &quot;肺泡呼吸音&quot;, //章节标题
&quot;section_sort&quot;: 1, //章节顺序
&quot;status&quot;: 3, //状态:0=未开播,1=已播,2=直播中,3=录播
&quot;duration&quot;: 59,
&quot;see_num&quot;: 7,
&quot;course_info&quot;: &quot;共1分钟 · 7次播放&quot; // 章节信息描述
&quot;is_playback&quot;: 1, // 是否存在回放/观看时效
&quot;view_start_time&quot;: 0, //回放/观看时效开始时间(如果为0代表不存在起止时间、则课表中不展示起止时间)
&quot;view_end_time&quot;: 0 //回放/观看时效截止时间
&quot;ahead_data&quot;: [ // 导学
{
&quot;id&quot;: 23,
&quot;name&quot;: &quot;测试文档.docx&quot;, // 文件名称
&quot;url&quot;: &quot;https://testview.bioquan.com/handouts_file/2024101716645951.docx&quot; // 文件地址
}
],
&quot;pdf_data&quot;: [ // 讲义
{
&quot;id&quot;: 24,
&quot;name&quot;: &quot;测试文档.docx&quot;,
&quot;url&quot;: &quot;https://testview.bioquan.com/handouts_file/2024101716645951.docx&quot;
}
],
&quot;consolidate_data&quot;: [ // 巩固
{
&quot;id&quot;: 25,
&quot;name&quot;: &quot;测试文档.docx&quot;,
&quot;url&quot;: &quot;https://testview.bioquan.com/handouts_file/2024101716645951.docx&quot;
}
],
}
]
&quot;data&quot;: [ //系列课
{
&quot;id&quot;: 233,
&quot;title&quot;: &quot;B--测试课程D&quot;,
&quot;thumb_image&quot;: &quot;https://test-1304049341.cos.ap-nanjing.myqcloud.com/1678675768thumb.png&quot;,
&quot;type&quot;: 2,
&quot;price&quot;: &quot;0.00&quot;,
&quot;buy_valid_date&quot;: 1,
&quot;is_close&quot;: 1,
&quot;close_time&quot;: 1678676164,
&quot;sign_time&quot;: &quot;永久有效&quot;
}
}
{ //组合课
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok&quot;,
&quot;data&quot;: {
&quot;describe_info&quot;: [ //优惠信息,代表2门及以上课程折扣0.9,3门及以上0.8
{
&quot;count&quot;: 2, //门数
&quot;discount&quot;: 0.9 //折扣
},
{
&quot;count&quot;: 3,
&quot;discount&quot;: 0.8
}
],
&quot;list&quot;: [ //课程信息
{
&quot;id&quot;: 278,
&quot;title&quot;: &quot;苏老师测试直播课程&quot;,
&quot;thumb_image&quot;: &quot;https://test-1304049341.cos.ap-nanjing.myqcloud.com/1685412910thumb.png&quot;,
&quot;type&quot;: 1,
&quot;price&quot;: &quot;10.00&quot;,
&quot;status&quot;: 1 //1=未购买,0=已购买(不可勾选)
}
]
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>