多店铺需求

This commit is contained in:
Tankaikai 2025-04-08 18:30:51 +08:00
parent be566206ac
commit cf7edfe5da
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public class ShopInfoController {
Long shopId = StpKit.USER.getShopId(0L);
Long headId = StpKit.USER.getHeadId();
List<TokenSign> tokenSignList = StpKit.USER.getSession().getTokenSignList();
List<ShopBranchSelectDTO> data = shopInfoService.findShopBranch((headId != null&& CollUtil.isEmpty(tokenSignList)) ? headId : shopId);
List<ShopBranchSelectDTO> data = shopInfoService.findShopBranch((headId != null && CollUtil.isEmpty(tokenSignList)) ? headId : shopId);
return CzgResult.success(data);
}