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