## 退款菜品列表
数据格式为json
~~~[api]
post:/catering/ft/returnHandle
<<<
success
{
"status": "1",
"codemsg": "查询成功",
"data": [
{
"num": "6",
"payamount": "3",
"goodsname": "测试",
"price": 1,
"goodsid": "00000665",
"type": "1",
"discount": "0.5元",
"discounttype": "2",
"numrow": "1"
},
{
"num": "2",
"payamount": "3.6",
"goodsname": "中厨房明档",
"price": 2,
"goodsid": "00000596",
"type": "2",
"discount": "9折",
"discounttype": "1",
"numrow": "1"
}
]
}
<<<
error
{
"status": "03",
"codemsg": "校验信息错误秘钥错误"
}
~~~
---
**传参数据说明**
{"data":"3des加密串"}
*****
注意:
**key:** md5(key.$panterid.$storeid.$goodsname.$typename.$price)
*****
**3des加密串:**
对json串{"panterid":$panterid,"storeid":$storeid,"goodsname":$goodsname,"typename":$typename,"price":$price,"key":$key}进行3des加密
*****
**详细传参数据说明**
| 参数 | 参数类型 | 必须 | 说明|
| ----------- | ------------------------------ | ------------ | --- |
| cardno| string| yes |卡号|
| panterid| string| yes |商户id|
| storeid| string| yes |店铺id|
| key| string| yes |md5(key.$panterid.$storeid.$goodsname.$typename.$price)
|