|
@@ -14,6 +14,7 @@ import com.zy.bms.service.ubi.IUbiInfoStateService;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
@@ -33,11 +34,6 @@ public class DeviceBaseServiceImpl extends ServiceImpl<DeviceBaseMapper, DeviceB
|
|
|
@Resource
|
|
|
private ILpInfoStateService lpInfoStateService;
|
|
|
|
|
|
- @Override
|
|
|
- public boolean checkOpenNum(String openNum) {
|
|
|
- return baseMapper.checkOpenNum(openNum) > 0;
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
public List listByGroupIdWx(String groupId) {
|
|
|
String type = baseMapper.getTypeByGroupId(groupId);
|
|
@@ -54,10 +50,15 @@ public class DeviceBaseServiceImpl extends ServiceImpl<DeviceBaseMapper, DeviceB
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Map<String, List<DeviceWxListVo>> listByGroupIdsWx(List<String> groupIds) {
|
|
|
- List<DeviceWxListVo> list = baseMapper.listByGroupIds(groupIds);
|
|
|
- if (list.isEmpty()) return null;
|
|
|
- return list.stream().collect(Collectors.groupingBy(DeviceWxListVo::getGroupId));
|
|
|
+ public Map<String, List<DeviceWxListVo>> listByUserIdWx(Integer userId) {
|
|
|
+ List<DeviceWxListVo> result = new ArrayList<>();
|
|
|
+ //路牌
|
|
|
+ List<DeviceWxListVo> lpList = lpInfoStateService.listByUserId(userId);
|
|
|
+ if (lpList != null) result.addAll(lpList);
|
|
|
+ //普适型
|
|
|
+ List<DeviceWxListVo> ubiList = ubiInfoStateService.listByUserId(userId);
|
|
|
+ if (ubiList != null) result.addAll(ubiList);
|
|
|
+ return result.isEmpty() ? null : result.stream().collect(Collectors.groupingBy(DeviceWxListVo::getGroupId));
|
|
|
}
|
|
|
|
|
|
@Override
|