From 9d2d39cedeaa0cde3c8f00de368180fee01cf73b Mon Sep 17 00:00:00 2001 From: Lemon Date: Fri, 7 Jul 2023 08:44:36 +0800 Subject: [PATCH] update --- .../pile/service/impl/PileMerchantInfoServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileMerchantInfoServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileMerchantInfoServiceImpl.java index 0f06a6742..c3ea1738a 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileMerchantInfoServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileMerchantInfoServiceImpl.java @@ -257,8 +257,8 @@ public class PileMerchantInfoServiceImpl implements IPileMerchantInfoService { public List queryInfoListByIds(AuthorizedDeptVO authorizedMap) { String parentId = authorizedMap.getParentId(); List deptIds = Lists.newArrayList(); - // 父级id为100表示为 thinkgem 账号, 0为 jskf 账号 - if (!StringUtils.equals("100", parentId) && !StringUtils.equals("0", parentId)) { + // 父级id为0代表 thinkgem/jskf 账号 + if (!StringUtils.equals("0", parentId)) { String deptId = authorizedMap.getDeptId(); deptIds.add(deptId); }