获取用户账号列表
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/admin-api/user</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET</li>
</ul>
<p><strong>参数:</strong></p>
<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;">enable_status</td>
<td style="text-align: left;">in:0,1</td>
<td style="text-align: left;">int</td>
<td>状态:0=禁用,1=启用</td>
</tr>
<tr>
<td style="text-align: left;">phone</td>
<td style="text-align: left;"></td>
<td style="text-align: left;">string</td>
<td>手机号</td>
</tr>
<tr>
<td style="text-align: left;">real_name</td>
<td style="text-align: left;"></td>
<td style="text-align: left;">string</td>
<td>姓名</td>
</tr>
<tr>
<td style="text-align: left;">gender</td>
<td style="text-align: left;">in:0,1</td>
<td style="text-align: left;">int</td>
<td>性别 1=男 2=女 0=未知</td>
</tr>
<tr>
<td style="text-align: left;">id_number</td>
<td style="text-align: left;"></td>
<td style="text-align: left;">string</td>
<td>身份证号</td>
</tr>
<tr>
<td style="text-align: left;">page_num</td>
<td style="text-align: left;"></td>
<td style="text-align: left;">int</td>
<td>页码</td>
</tr>
<tr>
<td style="text-align: left;">limit_size</td>
<td style="text-align: left;"></td>
<td style="text-align: left;">int</td>
<td>每页记录数</td>
</tr>
</tbody>
</table>
<p><strong>说明:</strong></p>
<ul>
<li>创建顺序倒序返回</li>
</ul>
<p><strong>返回示例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;total&quot;: 1,
&quot;per_page&quot;: 10,
&quot;current_page&quot;: 1,
&quot;last_page&quot;: 1,
&quot;data&quot;: [
{
&quot;asset_info&quot;: {
&quot;user_uid&quot;: &quot;b449c270dc3745ca9644d309dac5bd51&quot;,
&quot;balance_price&quot;: 10700200,//当前余额(分)
&quot;expiry_timestamp&quot;: 1767089556,//会员到期时间 秒时间戳
&quot;create_datetime&quot;: &quot;2024-12-30 15:12:52&quot;,
&quot;update_datetime&quot;: &quot;2024-12-30 18:12:36&quot;
},
&quot;id&quot;: 936,
&quot;user_uid&quot;: &quot;b449c270dc3745ca9644d309dac5bd51&quot;,
&quot;official_openid&quot;: &quot;&quot;,
&quot;mini_openid&quot;: &quot;ojot-5ctZQ6QLcsJ-IaxvCOVNoOE&quot;,
&quot;tencent_unionid&quot;: &quot;&quot;,
&quot;real_name&quot;: &quot;夏&quot;,
&quot;profile_photo&quot;: &quot;&quot;,
&quot;phone&quot;: &quot;18329046271&quot;,
&quot;birthday&quot;: &quot;1994-07-11&quot;,
&quot;gender&quot;: 1,//性别 1=男 2=女 0=未知
&quot;email&quot;: &quot;489275233@qq.com&quot;,
&quot;id_number&quot;: &quot;330304199407121212&quot;,
&quot;enable_status&quot;: 1,
&quot;create_datetime&quot;: &quot;2024-12-30 15:12:52&quot;,
&quot;update_datetime&quot;: &quot;2024-12-30 15:15:43&quot;,
&quot;update_info_switch&quot;: 1//信息是否首次编辑 0=为编辑
}
]
},
&quot;code&quot;: 0
}</code></pre>