.
#### 程序代碼
# 在gateway-worker中實際執(zhí)行的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用戶的擴展信息, 但是框架執(zhí)行的時候,變成了用戶C的UUID 371006
[2023-12-12 14:17:11]`deleted_at` is null; //with查詢 724129 用戶的擴展信息, 但是框架執(zhí)行的時候,變成了用戶C的UUID 371006
```
#### 重現問題的步驟
此bug不是必現