请求参数
```JSON
{
"page": 1, //当前页码
"limit": 10, //每页记录数
"sidx": "id", //排序字段
"order": "asc/desc", //排序方式
"key": "华为" //检索关键字
}
```
分页数据
响应示例
```JSON
{
"msg": "success",
"code": 0,
"page": {
"totalCount": 0,
"pageSize": 10,
"totalPage": 0,
"currPage": 1,
"list": [
{
"id": 2,
"name": "aa",
"address": "bbb",
"areacode": "124"
}
]
}
}
```