多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
1. [充值缴费](用户--充值缴费.md) 2. [生活缴费](用户--生活缴费.md) [TOC] ## 获取用户余额 ~~~[api] get:/funds/getBalance <<< success { "code": 0, "data": { "data": { "sum": 0//余额 (单位是分) } } } <<< error ~~~ ## 获取用户押金 ~~~[api] get:/funds/getDeposit <<< success { "code": 0, "data": { "status": 0,//押金状态 0 正常 1 申请退款中 2 已退款 3 拒绝退款 "sum": 0//押金 (单位·分) } } <<< error ~~~ ## 获取用户充值记录 ~~~[api] get:/funds/recharge <<< success { "code": 0, "data": { "data": [ { "order_number": "AB123456",//充值订单号 "sum": 200,//充值金额 (单位分) "status": 0,//充值状态 0 未付款 1已付款 "type": 0,//充值类型 0 余额 1 押金 "mode": 0,//支付方式 0 微信 1 支付宝 2 银行卡 "create_time": "2017-11-14 20:15:18"//下单时间 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } <<< error ~~~ ## 充值记录分页 ~~~[api] get:/funds/recordPag *int:currentPage=1#当前页 *int:pageNumber=10#页码 <<< success { "code": 0, "data": { "data": [ { "order_number": "AB123456", "sum": 200, "status": 0, "type": 0, "mode": 0, "create_time": "2017-11-14 20:15:18" } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 获取用户提现记录 ~~~[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": "参数错误!" } ~~~ ## 余额申请提现 >[info] 注:提现账户类型和提现账户 前端设计没有 可以不用填写 ~~~[api] post:/funds/save *int:sum=1#提现金额 *int:a_type=0#提现账户类型 0 微信 1 支付宝 2 银行卡 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 押金申请提现 ~~~[api] post:/funds/saveDeposit <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~