orders表sys_user_id字段进行填充

This commit is contained in:
谭凯凯 2025-01-07 15:51:47 +08:00 committed by Tankaikai
parent f45f5e5615
commit 989783a9f8
1 changed files with 1 additions and 1 deletions

View File

@ -803,6 +803,6 @@ public class OrdersServiceImpl extends ServiceImpl<OrdersDao, Orders> implements
if (sysUserEntity == null) {
return;
}
orders.setSysUserId(sysUserEntity.getSysUserId());
orders.setSysUserId(sysUserEntity.getUserId());
}
}