语音审核
<h3><strong>简要描述:</strong></h3>
<h1>- 语音审核查询接口</h1>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://../super_admin/audioFile/grid</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>参数:</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>参数</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>name</td>
<td>是</td>
<td>string</td>
<td></td>
<td>文件名称</td>
</tr>
<tr>
<td>admin_id</td>
<td>否</td>
<td>int</td>
<td></td>
<td>用户编号</td>
</tr>
<tr>
<td>page</td>
<td>是</td>
<td>int</td>
<td>1</td>
<td>起始页</td>
</tr>
<tr>
<td>limit</td>
<td>是</td>
<td>int</td>
<td>10</td>
<td>每页的条数</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
&quot;msg&quot;: &quot;success&quot;,
&quot;code&quot;: 0,
&quot;data&quot;: [{
&quot;admin_id&quot;: 10,
&quot;description&quot;: &quot;&quot;,
&quot;file_name&quot;: &quot;10_1628500125642.wav&quot;,
&quot;id&quot;: 3,
&quot;name&quot;: &quot;核桃编程18秒前置&quot;,
&quot;stamp&quot;: &quot;2021-08-09 17:08:45&quot;,
&quot;status&quot;: 1,
&quot;adminName&quot;: &quot;pinshenwl&quot;
}],
&quot;count&quot;: 1
}</code></pre>
<p><strong>返回参数说明</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>int</td>
<td>语音编号</td>
</tr>
<tr>
<td>admin_id</td>
<td>int</td>
<td>用户编号</td>
</tr>
<tr>
<td>adminName</td>
<td>int</td>
<td>用户名称</td>
</tr>
<tr>
<td>name</td>
<td>string</td>
<td>名称</td>
</tr>
<tr>
<td>file_name</td>
<td>string</td>
<td>文件</td>
</tr>
<tr>
<td>stamp</td>
<td>string</td>
<td>上传日期</td>
</tr>
<tr>
<td>description</td>
<td>string</td>
<td>备注</td>
</tr>
<tr>
<td>status</td>
<td>string</td>
<td>审核状态</td>
</tr>
</tbody>
</table>
<h3>**</h3>
<h3>简要描述:</h3>
<p>**</p>
<h1>审核</h1>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://../super_admin/audioFile/quality</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>参数:</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>参数</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>status</td>
<td>是</td>
<td>int</td>
<td></td>
<td>状态,0:未审核,1:审核通过,2:未通过</td>
</tr>
<tr>
<td>id</td>
<td>是</td>
<td>int</td>
<td></td>
<td>编号</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
&quot;code&quot;:0,
&quot;msg&quot;:&quot;&quot;,
&quot;data&quot;:1
}</code></pre>
<p><strong>备注</strong></p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>