用户列表修改

This commit is contained in:
张松 2025-02-18 14:03:23 +08:00
parent 440bb831d2
commit 02cb55b295
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class ShopUserServiceImpl extends ServiceImpl<ShopUserMapper, ShopUser> i
@Resource
private RedisService redisService;
private ShopUser getUserInfo(Long shopUserId, Long shopId) {
private ShopUser getUserInfo(Long shopId, Long shopUserId) {
ShopUser shopUser = queryChain().eq(ShopUser::getShopId, shopId).eq(ShopUser::getId, shopUserId).one();
if (shopUser == null) {
throw new ApiNotPrintException("用户信息不存在");