题目批改信息
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>大联考题目批改详情接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>joint_exam/exam_topic_check</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/大联考id</td>
</tr>
<tr>
<td style="text-align: left;">question_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>题目id</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok!&quot;,
&quot;data&quot;: {
&quot;question&quot;: { // 题目信息
&quot;id&quot;: 993, // 题目id
&quot;problem&quot;: &quot;9组合题大题--单选多选填空简单混合4题&quot;,
&quot;answer&quot;: &quot;&quot;, // 选择题时输出为数组格式
&quot;right_answer&quot;: &quot;&quot;, // 正常答案
&quot;image&quot;: [], // 图片
&quot;right_answer_image&quot;: [], // 正确答案图片
// 如果是组合题时本次的(当前份下)小题做题记录需要额外请求
// 接口:joint_exam/s_exam_topic_check,传参topic_id、question_id(大题id)、user_id(当前做题用户id)
&quot;type&quot;: 0, // 题型
&quot;parsing&quot;: &quot;&quot;, // 解析文字
&quot;parsing_image&quot;: [], // 解析图片
&quot;parsing_video&quot;: &quot;&quot;, // 解析视频
&quot;kn&quot;: &quot;&quot;, // 知识点
&quot;score&quot;: 20, // 题目分值
&quot;is_check&quot;: 0, // 是否批改完成(针对于整题):0=否,1=是
&quot;s_list&quot;: [ // 小题信息(非组合题不输出)
{
&quot;id&quot;: 994,
&quot;problem&quot;: &quot;组合题小题--选择题单选:正确答案为A&quot;,
&quot;answer&quot;: [
&quot;选项1&quot;,
&quot;选项2&quot;,
&quot;选项3&quot;,
&quot;选项4&quot;
],
&quot;right_answer&quot;: &quot;A&quot;,
&quot;image&quot;: [],
&quot;right_answer_image&quot;: [],
&quot;type&quot;: 1,
&quot;parsing&quot;: null,
&quot;parsing_image&quot;: [],
&quot;parsing_video&quot;: null,
&quot;kn&quot;: null,
&quot;score&quot;: 5,
&quot;is_check&quot;: 0
}
]
},
&quot;count&quot;: 4, // 总份数
&quot;average_score&quot;: &quot;5.00&quot;, // 平均分
&quot;page&quot;: 1,
&quot;pageSize&quot;: 15,
&quot;list&quot;: [
{
&quot;id&quot;: 31, // 做题记录id
&quot;user_id&quot;: 1, // 用户id
&quot;select_answer&quot;: &quot;填空题的答案&quot;, // 选择/输入的答案
&quot;select_answer_image&quot;: &quot;&quot;, // 输入答案图片
&quot;is_check&quot;: 1, // 是否批改:1=是,0=否
// 以下字段未批改时不显示
&quot;is_correct&quot;: 0, // 做题状态:0=已做,1=正确,2=错误
&quot;score&quot;: 5, // 得分
}
]
}
}</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>