文档
测试

01、获取所有会员等级

POST
/member/memberlevel/list

请求参数

```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": "aaa", "growthPoint": null, "defaultStatus": null, "freeFreightPoint": null, "commentGrowthPoint": null, "priviledgeFreeFreight": null, "priviledgeMemberPrice": null, "priviledgeBirthday": null, "note": null }] } } ```