You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
516 B

  1. <?php
  2. namespace App\Crontab;
  3. use App\Service\v3\Interfaces\OrderOnlineServiceInterface;
  4. use Hyperf\Crontab\Annotation\Crontab;
  5. use Hyperf\Di\Annotation\Inject;
  6. /**
  7. * @Crontab(name="autocancelorder", rule="*\/10 * * * * *", callback="execute", memo="自定取消15分钟过期订单")
  8. */
  9. class AutoCancelOrder
  10. {
  11. /**
  12. * @Inject
  13. * @var OrderOnlineServiceInterface
  14. */
  15. protected $orderOnlineService;
  16. public function execute()
  17. {
  18. $this->orderOnlineService->autoCancel();
  19. }
  20. }