<?php namespace app\crontab\controller; use think\facade\Db; /** * ============================================================================ * * ============================================================================ * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。 * 网站地址: https://www.valimart.net/ * ---------------------------------------------------------------------------- * * ============================================================================ * 定时器 */ class Hour extends BaseCron { /** * 执行频率常量 1小时 * @var int */ const EXE_TIMES = 3600; /** * 默认方法 */ public function index() { } } ?>