| 123456789101112131415161718192021 |
- <?php
- namespace App\Module\UrsPromotion\Test;
- use App\Module\UrsPromotion\Services\UrsTransferFeeService;
- use Tests\TestCase;
- class OutFeeTest extends TestCase
- {
- public function testA()
- {
- $user_id = 39105 ;
- $transferFeeRate = UrsTransferFeeService::getBestFeeRateForUser($user_id, 'out');
- dump($transferFeeRate);
- }
- }
|