CycleCallBack.php 745 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * 循环上报,上报m个,停止上报n个
  4. *
  5. */
  6. namespace App\Jobs;
  7. use GuzzleHttp\Client;
  8. use Illuminate\Bus\Queueable;
  9. use Illuminate\Queue\SerializesModels;
  10. use Illuminate\Queue\InteractsWithQueue;
  11. use Illuminate\Contracts\Queue\ShouldQueue;
  12. use Illuminate\Foundation\Bus\Dispatchable;
  13. use Redis;
  14. use DB;
  15. use App\Modules\Callback\Services\QappCycleCallBackService;
  16. class CycleCallBack implements ShouldQueue
  17. {
  18. use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
  19. private $order_on;
  20. public function __construct($order_on)
  21. {
  22. $this->order_on = $order_on;
  23. }
  24. /**
  25. * Execute the job.
  26. *
  27. * @return void
  28. */
  29. public function handle()
  30. {
  31. }
  32. }