You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
369 B
13 lines
369 B
<?php
|
|
|
|
use App\Http\Controllers\OutAPIController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
// 余额查询
|
|
Route::post('transfer/queryBalance', [OutAPIController::class, 'queryBalance']);
|
|
|
|
// 代付接口
|
|
Route::post('transferOrder', [OutAPIController::class, 'transferOrder']);
|
|
|
|
// 订单查询
|
|
Route::post('transfer/query', [OutAPIController::class, 'transferQuery']);
|