| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Module\Transfer\Tests\Unit;
- use Tests\TestCase;
- class CalculateOutFeeTest extends TestCase
- {
- public function testA()
- {
- $app_id = 11;
- $farmUserId = 39113;
- $feeDto = \App\Module\Transfer\Services\TransferThirdPartyService::calculateWithdrawFeeWithContext(
- $app_id,
- 1,
- [ 'user_id' => $farmUserId ] // 传递农场用户ID,让URS推广模块能够根据房屋等级和达人等级计算手续费
- );
- dump($feeDto);
- }
- }
|