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