service = $app->make(UserService::class); } /** * @throws BusinessException */ public function loginSendSms(): \think\Response { $this->service->loginSendSms($this->params); return responseOk(); } }