This commit is contained in:
2025-10-29 15:32:26 +08:00
parent d90614805b
commit b7462657cd
78921 changed files with 2753938 additions and 71 deletions

View File

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