搜索买手提现

## 搜索买手提现 ### 请求方法:GET/POST 接口地址:{域名}/platform/buyerWithdraw/search 接口参数: |字段|类型|描述| |-|-|-| |buyerId(买手ID) |examineStatus(审核状态:IN_REVIEW-审核中,VERIFIED-审核通过,REJECTED-审核不通过) |pageNumber(默认为1) |pageSize(默认为10) ### 版本 |版本|作者|| |-|-|-| |v1.0|xxx|| ### 例子 `http://94.191.69.118/platform/buyerWithdraw/search buyerId=5&examineStatus=IN_REVIEW&pageNumber=1&pageSize=10 ` 返回: ```json { "msg": "success", "code": 200, "data": { "totalRow": 1, "pageNumber": 1, "firstPage": true, "lastPage": true, "totalPage": 1, "pageSize": 10, "list": [ { "amount": 123, "withdraw_type": "PRINCIPAL", "user_id": 5, "examine_status": "IN_REVIEW", "fact_amount": 123, "withdraw_time": "2019-06-18 11:48:12", "examine_explain": null, "id": 1 } ] } } ```