curl --location --request GET '/api/mission/v1/withdraw/records?page=1&page_size=10&status=1' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3NzgxMjA5NTYsImlhdCI6MTc3NTUyODk1NiwianRpIjoiZjYwZWI0YWMtNDg3NS00MzM4LThkZGUtMGI2ZTFjZjFhOGZhIiwidXNlcl9pZCI6MzF9.hTIJI1W90s0ABGjpIjwLUWAQmSi9-OFh_KvgUotfSP4'{
"code": 0, // 状态码:0-成功
"message": "success", // 状态信息
"data": {
"total": 5, // 总记录数
"page": 1, // 当前页码
"records": [ // 记录列表
{
"withdraw_no": "MWD202512190001", // 提现单号
"amount": 100.00, // 提现金额
"fee": 0.00, // 手续费
"actual_amount": 100.00, // 实际到账金额
"withdraw_type": 1, // 提现方式:1-支付宝,2-微信
"withdraw_type_text": "支付宝", // 提现方式文本
"account_name": "张*", // 账户名称(脱敏显示)
"account_number": "exa***@alipay.com", // 账号(脱敏显示)
"status": 4, // 状态码
"status_text": "已完成", // 状态文本
"apply_time": "2025-12-19 10:00:00", // 申请时间
"audit_time": "2025-12-19 10:30:00", // 审核时间,未审核时为空
"audit_remark": "", // 审核备注,拒绝时显示原因
"pay_time": "2025-12-19 11:00:00" // 打款完成时间,未完成时为空
}
]
}
}