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); }