BargainLaunchClose.php 645 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\bargain\event;
  11. use addon\bargain\model\Bargain;
  12. class BargainLaunchClose
  13. {
  14. public function handle($params)
  15. {
  16. $bargain = new Bargain();
  17. $res = $bargain->cronCloseBargainLaunch($params['relate_id']);
  18. return $res;
  19. }
  20. }