ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ~~~[api] get:/funds/getBalance <<< success { "code": 0, "data": { "data": { "sum": 0//余额 (单位是分) } } } <<< error ~~~ ## 获取用户提现记录 ~~~[api] get:/funds/getCash <<< success { "code": 0, "data": { "data": [ { "id": 1, "sum": 2000,//提现金额 "status": 0,//提现状态 0 申请中 1 提现成功 2 提现失败 "type": 0,// 提现类型 0 余额 1 押金 "a_type": 0,//提现账户类型 0 微信 1 支付宝 2 银行卡 "account": "12313",//提现账户 "create_time": "2017-11-14 18:05:44"//申请提现时间 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } <<< error ~~~ ## 提现记录分页 ~~~[api] get:/funds/cashPag *int:currentPage=1#当前页 *int:pageNumber=10#页码 <<< success { "code": 0, "data": { "data": [ { "id": 1, "sum": 2000, "status": 0, "type": 0, "a_type": 0, "account": "12313", "create_time": "2017-11-14 18:05:44" } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 余额申请提现 >[danger] 注:提现账户类型和提现账户 前端设计没有 可以不用填写 ~~~[api] post:/funds/save *int:sum=10#提现金额 int:a_type=0#提现账户类型 0 微信 1 支付宝 2 银行卡 string:account=12345#提现账户 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 收入记录列表 ~~~[api] get:/funds/getIncome <<< success { "code": 0, "data": { "data": [ { "sum":10//收入金额 "source":0,//0 开门 1 房屋委托 "create_time":"2017-02-03 12:00:00" } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 0,//总条数 "total": 0//总收入 } } <<< error ~~~ ## 收入记录分页 ~~~[api] get:/funds/incomePag *int:currentPage=1#当前页 *int:pageNumber=1#页码 <<< success { "code": 0, "data": { "data": [ { "sum":10//收入金额 "source":0,//0 开门 1 房屋委托 "create_time":"2017-02-03 12:00:00" } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~