1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace App\Jobs;
- use App\Consts\SysConsts;
- use GuzzleHttp\Client;
- use Illuminate\Bus\Queueable;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Bus\Dispatchable;
- /**
- * 快应用订单-异步任务处理-统计书籍在某个公司下的付费相关情况
- * 1.统计任务
- */
- class QappOrder implements ShouldQueue
- {
- use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
- private $order_on;
- /**
- * Create a new job instance.
- *
- * @return void
- */
- public function __construct(string $order_on)
- {
- $this->order_on = $order_on;
- }
- /**
- * Execute the job.
- *
- * @return void
- */
- public function handle()
- {
-
- }
-
- }
|