请求参数
```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": 1,
"name": "普通会员",
"growthPoint": 0,
"defaultStatus": 1,
"freeFreightPoint": 299.0000,
"commentGrowthPoint": 10,
"priviledgeFreeFreight": 0,
"priviledgeMemberPrice": 0,
"priviledgeBirthday": 1,
"note": "初级会员"
}
]
}
}
```