Home - 提现单 登录  
最后修改者: huangyingliang  2025-11-07 10:19:53 

平台添加提现申请

编号  :  001

POST - https://fltest.tp6.hyj111.cn/admin/platformWithdrawApply/submit
headers下的token必传 Accept = application/json
请求参数
参数名 参数类型 必传 缺省值 描述
price decimal(10,2) Y 提现申请金额
返回值
{
    "status": 200,
    "msg": "提交成功",
    "data": {
        "id": 1,
        "price": "0.01",
        "platform_name": "南通飞驴网络科技有限公司",
        "status": 0,
        "created_at": "2025-11-07 10:17:48"
    }
}
最后修改者: huangyingliang  2025-11-07 11:04:17 

平台提现列表

编号  :  002

GET - https://fltest.tp6.hyj111.cn/admin/platformWithdrawApply/list
headers下的token必传 Accept = application/json
请求参数
参数名 参数类型 必传 缺省值 描述
page int Y 页码
pageSize int Y 每页显示数
transaction_id string N 交易号
status int N 状态 0未审核 1审核通过 2审核拒绝
create_time_start string N 申请 开始时间
create_time_end string N 申请 结束时间
audit_time_start string N 上传 开始时间
audit_time_end string N 上传 结束时间
返回值
{
    "status": 200,
    "msg": "success",
    "data": {
        "total": 1,
        "per_page": 10,
        "current_page": 1,
        "last_page": 1,
        "data": [
            {
                "id": 1,
                "platform_name": "南通飞驴网络科技有限公司", // 平台名称
                "price": "0.01", // 提现申请金额
                "admin_id": 0,  // 审核的admin_id
                "status": 0, // 状态  0未审核  1审核通过  2审核拒绝
                "remark": null, // 管理员备注
                "created_at": "2025-11-07 10:17:48", // 申请时间
                "reason": "", // 拒绝理由
                "refuse_at": null, // 拒绝时间
                "audit_at": null, // 审核通过时间  也是凭据上传时间
                "voucher": null, // 凭据
                "transaction_id": "202511071017485427001487177274", // 交易号
                "updated_at": "2025-11-07 10:17:48",
                "admin": null  // 后台审核员账号信息
            }
        ],
        "platform_info": {  // 平台信息
            "platform_name": "南通飞驴网络科技有限公司", // 平台名称
            "balance": "10.00"  // 当前账户余额
        }
    }
}
最后修改者: huangyingliang  2025-11-07 10:35:57 

平台提现申请 平台审核接口

编号  :  003

POST - https://fltest.tp6.hyj111.cn/admin/platformWithdrawApply/audit
headers下的token必传 Accept = application/json
请求参数
参数名 参数类型 必传 缺省值 描述
id int Y 申请id
status int Y 状态 0未审核 1审核通过 2审核拒绝
voucher string N 凭据图片
reason string N 拒绝理由
返回值
当审核通过返回:
{
    "status": 200,
    "msg": "操作成功",
    "data": {
        "id": 1,
        "status": 1,
        "remark": "",
        "voucher": "https://img.hyj111.cn/gxc_audite716aecb32b296f6b78a0223a0c17317.png",
        "audit_at": "2025-11-07 10:31:53"
    }
}

当拒绝返回:
{
    "status": 200,
    "msg": "操作成功",
    "data": {
        "id": 2,
        "status": 2,
        "remark": "",
        "voucher": "https://img.hyj111.cn/gxc_audite716aecb32b296f6b78a0223a0c17317.png",
        "refuse_at": "2025-11-07 10:35:02",
        "reason": "测试拒绝理由123"
    }
}