试卷批改信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>大联考收卷批改信息接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>joint_exam/exam_check_info</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;">topic_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>考试/试卷id</td>
</tr>
</tbody>
</table>
<p>可使用“AI大联考2”试卷测试
展示参考:
<img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=243442f9d20a6c143c33f40b8cab45a6&amp;file=file.png" alt="" /></p>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok!&quot;,
&quot;data&quot;: {
&quot;data_info&quot;: {
&quot;count_num&quot;: 12, // 总题数
&quot;already_check&quot;: 0, // 已批改题数
&quot;not_check&quot;: 12, // 待批改题数
&quot;check_time&quot;: 1757865600 // 批改截止时间
},
&quot;topic_list&quot;: [ // 题目信息
{
&quot;question_stem&quot;: &quot;一、填空题&quot;, // 大题信息
&quot;list&quot;: [
{
&quot;id&quot;: 985, // 题目id
&quot;type&quot;: 3, // 题型
&quot;topic_num&quot;: 1, // 题号
&quot;is_check&quot;: 0, // 是否批改(0=未批改,1=已批改)
}
]
},
{
&quot;question_stem&quot;: &quot;二、简答题&quot;,
&quot;list&quot;: [
{
&quot;id&quot;: 992,
&quot;type&quot;: 4,
&quot;is_check&quot;: 0,
}
]
},
{
&quot;question_stem&quot;: &quot;三、组合题&quot;,
&quot;list&quot;: [
{
&quot;id&quot;: 988,
&quot;type&quot;: 3,
&quot;is_check&quot;: 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>