试卷详情
<h5>简要描述</h5>
<ul>
<li>试卷详情</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>{{BASE_URL}}/api/job.paper/getInfo</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </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;">paperId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>试卷 id</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
"code": 20000,
"msg": "success",
"time": "2021-09-07 15:21:15",
"data": {
"jobPaperId": 32, # 试卷 id
"platformId": 25,
"step": "webReservedReturn", # 那个模块的试卷
"name": "试卷名称", # 试卷名称
"background": "背景资料, 图文, 可为空", # 背景资料, 有需要, 才展示
"score": "20.00", # 试卷总分
"belongs": 1,
"extra": [], # 额外数据
"status": 1,
"addTime": "2021-09-07 14:51:59",
"updateTime": "2021-09-07 14:57:06",
"questionList": [
{
"questionId": 4, # 问题 id
"question": "1111" # 问题内容
}
]
}
}</code></pre>