123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace App\Console\Commands;
- use App\Jobs\QappTikTokUser;
- use App\Jobs\QappTikTokUserCharge;
- use App\Modules\Channel\Services\QappSendOrderContentShieldConfigService;
- use Illuminate\Console\Command;
- use App\Modules\User\Models\QappUser;
- use App\Modules\User\Models\User;
- class BookTest extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'book:test';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $client;
- protected $description = 'Command description';
- /**
- * Create a new command instance.
- *
- * @return void
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * Execute the console command.
- *
- * @return mixed
- */
- public function handle()
- {
- $sen_order_id = 0;
- $ip = '112.17.235.74';
- $result = QappSendOrderContentShieldConfigService::doShied($sen_order_id,$ip);
- print_r($result);
- }
- }
|