model = new SysNoticeLog(); } /** * 消息发送记录 * @param $where * @return array */ public function getPage($where) { return (new CoreNoticeLogService())->getPage($this->site_id, $where); } /** * 获取消息发送记录详情 * @param string $id * @return array */ public function getInfo(string $id) { return (new CoreNoticeLogService())->getInfo($this->site_id, $id); } }