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