## 获取提现状态信息
~~~[api]
get:Z.U('cash/getCachInfo')
<<<
success
{
"status":0,
"data": {
status: 系统状态 0:系统关闭提现,1:正常
min: 最小提现额度(单位:元)
max: 最大提现额度(单位:元)
perday: 每天提现次数
}
}
~~~
## 提现
~~~[api]
post:Z.U('cash/cash')
*rmb#提现金额(元)
<<<
success
{
"status":0,
}
~~~
## 提现记录
~~~[api]
get:Z.U('cash/getCash')
limit#每页数据量
page=1#请求页码
max=2000#最大查询数据量
<<<
success
{
"status":0,
"data": [
{
"id" :
"cashsn" : //sn
"rmb" : //提现金额(分)
"addtime" : //时间
"status" : //状态 0:失败,1:成功
},
...更多
]
}
~~~