user = $user; $this->password = $password; $this->userService = new UserService(); } /** * Execute the job. * * @return void */ public function handle() { // $mobile = $this->user->mobile; // $password = $this->password; // $uuid = $this->user->uuid; // //创建基表账号 // $union_user = $this->userService->changeUnionUser($mobile,$password, $uuid); // //绑定基表id // if (!empty($union_user) && empty($this->user->uuid)) // { // $this->user->uuid = $union_user->id; // $this->user->save(); // } } }