点击分类获取题目数量
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>点击分类获取题目数量</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>api/job.paper/practiceQuestionCount</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;">extra</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">array</td>
<td>数组 格式 {"type":"1,2,3,4,5","cateId":"xxx","questionTag":"1"} type:题型 目前5个 也可以手动筛选 cateId:分类 questionTag:1 模拟题 2 正式题</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
"code": 20000,
"msg": "success",
"time": "2022-06-02 09:38:21",
"data": {
"singleSimulation": 217, #单选模拟题数量
"singleFormal": 206, #单选正式题数量
"multipleSimulation": 119, #多选模拟题数量
"multipleFormal": 175, #多选正式题数量
"judgeSimulation": 248, #判断模拟题数量
"judgeFormal": 373, #判断正式题数量
"subjectiveSimulation": 0, #主观模拟题数量
"subjectiveFormal": 0, #主观正式题数量
"keywordSimulation": 0, #填空模拟题数量
"keywordFormal": 0, #填空正式题数量
"totalCount": 1338 #已配置好正式模拟题的总数量
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">groupid</td>
<td style="text-align: left;">int</td>
<td>用户组id,1:超级管理员;2:普通用户</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>