缴费查询
<h3>简要描述:</h3>
<h1>- 缴费查询接口</h1>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://../admin/recharge/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>page</td>
<td>是</td>
<td>string</td>
<td>1</td>
<td>起始页</td>
</tr>
<tr>
<td>limit</td>
<td>是</td>
<td>string</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;id&quot;: 11,
&quot;datetime&quot;: &quot;2021-08-11 15:00:29&quot;,
&quot;before_money&quot;: null,
&quot;recharge_money&quot;: 100.0000,
&quot;remark&quot;: &quot;&quot;,
&quot;admin_id&quot;: 13
}],
&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>before_money</td>
<td>int</td>
<td>余额(元)</td>
</tr>
<tr>
<td>recharge_money</td>
<td>int</td>
<td>充值金额(元)</td>
</tr>
<tr>
<td>datetime</td>
<td>date</td>
<td>充值时间</td>
</tr>
<tr>
<td>admin_id</td>
<td>int</td>
<td>用户</td>
</tr>
<tr>
<td>remark</td>
<td>string</td>
<td>备注</td>
</tr>
</tbody>
</table>