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