返回值说明
<h1><center>接口响应统一格式</center></h1>
<table>
<thead>
<tr>
<th>参数</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>string</td>
<td>状态码</td>
</tr>
<tr>
<td>data</td>
<td>object</td>
<td>返回该接口的具体内容,详见各接口</td>
</tr>
<tr>
<td>message</td>
<td>string</td>
<td>状态码描述</td>
</tr>
</tbody>
</table>
<h1><center>成功示例</center></h1>
<pre><code>{
&quot;code&quot;: &quot;0&quot;,
&quot;message&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {}
}</code></pre>
<h1><center>失败示例</center></h1>
<pre><code>{
&quot;code&quot;: &quot;-1&quot;,
&quot;message&quot;: &quot;请求失败&quot;
}</code></pre>