多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 发卡流水列表 #### 请求地址 admin/Card/giveOutCardFlowList 接口类型:需身份校验 #### body参数 | 名称 | 是否必须 | 类型 | 默认值 | 备注 | | --- | --- | --- | --- | --- | | token| true | string | null | token | | page| false | string | null | 当前页 | | pageSize| false | string | null | 每页显示条数 | | cardCatName| false | string | null | 卡种名称 | | startTime| false | string | null | 开始时间 | | endTime| false | string | null | 结束时间 | | customerId| false | string | null | 客户ID | | gocfIdStr| false | string | null | 发卡流水ID,多个以逗号连接(仅在导出excel文件时使用) | | isExport| false | string | null | 是否导出Excel(0:否 1:是) | #### 状态码 | Code | Msg | | --- | --- | | 0 | 成功 | | -1 | 失败 | #### 成功返回 ~~~ { "code": 0, "msg": "操作成功", "data": { "total": 1, "pageSize": 15, "start": 0, "root": \[             { "id": 1, "orderNo": "1211111111", "cardCatId": 19, "nums": 50, "standardPrice": "99.80", "sendDiscount": 70, "costDiscount": 60, "profit": 120, "createTime": "2020-03-06 17:24:54", "customerId": 1, "cardCatName": "爱奇艺黄金周卡", "customerName": "张三1", "totalMoney": "11.475"             }         \], "totalPage": 1, "currPage": 1     } } ~~~