12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use Illuminate\Support\Facades\DB;
- use App\Jobs\GiftJob;
- class Plantask extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'command:Plantask';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Command description';
- /**
- * Create a new command instance.
- *
- * @return void
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * Execute the console command.
- *
- * @return int
- */
- public function handle()
- {
- $list = DB::table('hx_gift_user_party')->where('new_task_status',0)->limit(10000)->orderBy('id','asc')->get()->toArray();
- //dd($list);
- //
- if(!empty($list)){
- foreach($list as $key => $val){
- $msg_id = $val->id;
- dispatch((new GiftJob($msg_id))->delay(0));//加入队列
- }
- //更新
- /*$ids = array_column($list,'id');
- $update = [
- 'new_task_status' => 1,
- ];
- DB::table('hx_gift_user_party')->whereIn('id',$ids)->update($update);*/
- }
- return 0;
- }
- }
|