企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 提现申请列表 ~~~[api] get:/property_cash <<< success { "code": 0, "data": { "data": [ { "id": 1, "sum": 10,//申请提现金额 "status": 1,//提现状态 0 申请中 1 提现成功 2 提现被拒 "a_type": null,//提现账户类型 0 微信 1 支付宝 2银行卡 "account": null,//提现账户 "create_time": "2017-11-25 19:08:42",//申请提现时间 "name": "",//提现人姓名 "phone": "15181474781",//提现人手机号 "balance": 0//可提金额 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } ~~~ ## 提现申请分页 ~~~[api] get:/property_cash/pag *int:currentPage=1#当前页 *int:pageNumber=10#页码 <<< success { "code": 0, "data": { "data": [ { "id": 1, "sum": 10,//申请提现金额 "status": 1,//提现状态 0 申请中 1 提现成功 2 提现被拒 "a_type": null,//提现账户类型 0 微信 1 支付宝 2银行卡 "account": null,//提现账户 "create_time": "2017-11-25 19:08:42",//申请提现时间 "name": "",//提现人姓名 "phone": "15181474781",//提现人手机号 "balance": 0//可提金额 } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 拒绝提现 ~~~[api] post:/property_cash/refuse *int:id=1#列表的 id <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 余额提现 ~~~[api] post:/property_cash/balance *int:id=1#列表的 id *int:sum=1#提现的金额 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 未处理申请列表 ~~~[api] get:/property_cash/apply <<< success { "code": 0, "data": { "data": [ { "id": 1, "sum": 10,//申请提现金额 "status": 1,//提现状态 0 申请中 1 提现成功 2 提现被拒 "a_type": null,//提现账户类型 0 微信 1 支付宝 2银行卡 "account": null,//提现账户 "create_time": "2017-11-25 19:08:42",//申请提现时间 "name": "",//提现人姓名 "phone": "15181474781",//提现人手机号 "balance": 0//可提金额 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } ~~~ ## 未处理提现申请分页 ~~~[api] get:/property_cash/applyPag *int:currentPage=1#当前页 *int:pageNumber=10#页码 <<< success { "code": 0, "data": { "data": [ { "id": 1, "sum": 10,//申请提现金额 "status": 1,//提现状态 0 申请中 1 提现成功 2 提现被拒 "a_type": null,//提现账户类型 0 微信 1 支付宝 2银行卡 "account": null,//提现账户 "create_time": "2017-11-25 19:08:42",//申请提现时间 "name": "",//提现人姓名 "phone": "15181474781",//提现人手机号 "balance": 0//可提金额 } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~