.
#### 程序代码
# 在gateway-worker中实际执行的laravel代码,使用了orm 的with关联, 查询用户A,B的信息:
```
$selfUser = User::query()->with('userInfo')->where(['uuid' => $selfUuid])->first();
info('$selfUuid='.$selfUuid); //查询用户A $UUID= 956498 的用户信息
info($selfUser);
$targetUser = User::query()->with('userInfo`deleted_at` is null; //with查询956498用户的扩展信息, 但是框架执行的时候,变成了用户C的UUID 371006
[2023-12-12 14:17:11]`deleted_at` is null; //with查询 724129 用户的扩展信息, 但是框架执行的时候,变成了用户C的UUID 371006
```
#### 重现问题的步骤
此bug不是必现