request->params([ ['key', ''], ['receiver', ''], ['create_time', []] ]); $res = (new NoticeLogService())->getPage($data); return success($res); } /** * 消息发送记录详情 * @description 消息发送记录详情 * @param $id * @return Response */ public function info($id) { $res = (new NoticeLogService())->getInfo($id); return success($res); } }