文档
测试

单张卡明细查询

POST
http://192.168.253.6:8088/report/changeMoneyRecord

请求参数

参数名
类型
描述
必填
firmid
int
门店编号
必填
cardid
int
卡ID
必填
opuserid
int
操作员ID
必填
opusername
string
操作员名称
必填
notes
string
备注
必填

响应参数

参数名
类型
描述
必填
code
int
接口调用状态码(1:成功 0:失败)
必填
message
string
接口调用返回文字信息
必填
data
json
接口返回数据
必填

说明 / 示例

#请求参数: { "firmid":12 ,"cardid":38434,"notes":"","opuserid":2,"opusername":"admin"} #返回结果: { "code": 1, "message": "SUCCESS", "data": [ { "cardno": "9000038434", "firmname": "星雅美辰店", "typecode": "消费", "billamount": 70, "beforetotalamount": 2300, "totalamount": 2230, "totaloptimes": 3, "totalactimes": 2, "paytime": "2020-09-15 06:37:25", "opusername": "admin", "billno": "120012523", "notes": null }, { "cardno": "9000038434", "firmname": "星雅美辰店", "typecode": "开卡", "billamount": 2300, "beforetotalamount": 2300, "totalamount": 4600, "totaloptimes": 1, "totalactimes": 1, "paytime": "2020-09-15 06:36:33", "opusername": "admin", "billno": null, "notes": "线下开卡" } ] }