Files
shop-platform/src/app/event/promotion/CloseGame.php
2025-12-02 15:36:42 +08:00

21 lines
327 B
PHP

<?php
namespace app\event\promotion;
use app\model\games\Games;
/**
* 关闭小游戏
* @author Administrator
*
*/
class CloseGame
{
public function handle($param)
{
$model = new Games();
$result = $model->cronCloseGames($param['relate_id']);
return $result;
}
}