Files
shop-platform/src/app/event/stat/CronStatShopHour.php
2025-10-29 15:32:26 +08:00

26 lines
323 B
PHP

<?php
/**
*/
namespace app\event\stat;
use app\model\stat\StatShop;
/**
* 店铺小时统计(计划任务)
*/
class CronStatShopHour
{
// 行为扩展的执行入口必须是run
public function handle($data)
{
$shop_stat = new StatShop();
$shop_stat->cronShopStatHour();
}
}