Commit e54bc670 authored by duanruiming's avatar duanruiming

[update] 车道查询添加进口道条件

parent 42a1f5ce
......@@ -2020,9 +2020,10 @@ public class TrendServiceImpl implements TrendService {
@Override
public List<LaneIdAliasNameVO> laneIdList(CommonCrossIdVO commonCrossIdVO) throws Exception {
ArrayList<LaneIdAliasNameVO> laneIdAliasNameVOS = new ArrayList<>();
List<LaneIdAliasNameVO> laneIdAliasNameVOS = new ArrayList<>();
LambdaQueryWrapper<CrossBaseLaneInfoPO> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(CrossBaseLaneInfoPO::getCrossId, commonCrossIdVO.getCrossId());
queryWrapper.eq(CrossBaseLaneInfoPO::getType, "2");
List<CrossBaseLaneInfoPO> laneInfoPOS = crossBaseLaneInfoMapper.selectList(queryWrapper);
if (!CollectionUtils.isEmpty(laneInfoPOS)) {
for (CrossBaseLaneInfoPO po : laneInfoPOS) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment