💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 我的列表 #### 请求地址 customer/Card/index 接口类型:需身份校验 #### body参数 | 名称 | 是否必须 | 类型 | 默认值 | 备注 | | --- | --- | --- | --- | --- | | token| true | string | null | token | | cardCatName| false | string | null | 卡种名称 | | orderNo| false | string | null | 批次号 | | startTime| false | string | null | 开始时间 | | endTime| false | string | null | 结束时间 | | page| false | string | null | 当前页 | | pageSize| false | string | null | 每页显示条数 | #### 状态码 | Code | Msg | | --- | --- | | 0 | 成功 | | -1 | 失败 | #### 成功返回 ~~~ { "code": 0, "msg": "操作成功", "data": { "total": 6, "pageSize": "1", "start": 0, "root": \[             { "id": 10,//ID "orderNo": "20200310170926496984",//批次号 "cardCatId": 73,//卡种ID "nums": 2,//数量 "standardPrice": "13.00",//标准价 "sendDiscount": 90,//发送折扣 "costDiscount": 50,//成本折扣 "profit": 10.4,//利润 "createTime": "2020-03-10 17:09:26",//创建时间 "customerId": 1,//客户ID "cardIdStr": "92,93,94",//卡密ID "name": "网易云音乐黑胶会员月卡",//卡种名称 "customerName": "张三1"//客户名称, "salesPrice": "13.500", "totalMoney": "27.000"             }         \], "totalPage": 6, "currPage": 1     } } ~~~