core_cron_service = new CoreCronService(); } /** * 自动任务列表 * @param array $where * @return mixed */ public function getPage(array $where = []) { return $this->core_cron_service->getPage($this->site_id, $where); } /** * 分组详情 * @param int $group_id * @return array */ public function getInfo(int $id) { return $this->core_cron_service->getInfo($this->site_id, $id); } }