123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace app\crontab\controller;
- use think\facade\Db;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 定时器
- */
- class Hour extends BaseCron
- {
- /**
- * 执行频率常量 1小时
- * @var int
- */
- const EXE_TIMES = 3600;
- /**
- * 默认方法
- */
- public function index()
- {
- }
- }
|