ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 客户卡种列表 #### 请求地址 admin/Customer/cardCatList 接口类型:需身份校验 #### body参数 | 名称 | 是否必须 | 类型 | 默认值 | 备注 | | --- | --- | --- | --- | --- | | token| true | string | null | token | | page| false| string | null | 当前页 | | pageSize| false| string | null | 每页显示条数 | | customerId| true| string | null | 客户ID | #### 状态码 | Code | Msg | | --- | --- | | 0 | 成功 | | -1 | 失败 | #### 成功返回 ~~~ { "code": 0, "msg": "操作成功", "data": { "total": 5, "pageSize": "1", "start": 0, "root": \[             { "id": 5, "customerId": 1, "cardCatId": 5, "discount": 83, "cardCatName": "腾讯卡", "customerName": "张三1"             }         \], "totalPage": 5, "currPage": 1     } } ~~~