查询app用户列表
<p><strong>简要描述:</strong> </p>
<ul>
<li>查询app用户列表</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/company/biz/getAppList</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:</strong> </p>
<pre><code>{
"current":1,
"size":10,
"name":"",
"companyId":null
}</code></pre>
<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;">current</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">Long</td>
<td>当前页</td>
</tr>
<tr>
<td style="text-align: left;">size</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">Long</td>
<td>每页展示数量</td>
</tr>
<tr>
<td style="text-align: left;">name</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>用户名</td>
</tr>
<tr>
<td style="text-align: left;">companyId</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">Long</td>
<td>企业ID</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
"code": 0,
"msg": "success",
"data": {
"records": [
{
"id": 4,
"shortId": 1000000000000004,
"name": "sunbaolin",
"password": "$2a$10$vxX4TXhhVvcWx1l.1w/dx.RRDNgu9VFmywQJX.xNUEDgWXekDLqsu",
"isVin": 0,
"vin": null,
"phone": null,
"appId": null,
"companyId": 1,
"companyName": null,
"delFlag": 0,
"createBy": "test",
"createTime": "2019-09-12 09:14:45",
"updateBy": null,
"updateTime": null
}
],
"total": 1,
"size": 10,
"current": 1,
"searchCount": true,
"pages": 1
}
}</code></pre>
<p><strong>返回参数说明</strong>
<strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>
<p>欢迎使用ShowDoc!</p>