Files
shop-platform/src/app/event/stat/CronStatStoreHour.php
2026-01-17 10:48:02 +08:00

18 lines
312 B
PHP

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