Commit b483e0b1 authored by tangwei's avatar tangwei

Merge branch 'develop_dl_plan6_temp' of…

Merge branch 'develop_dl_plan6_temp' of http://39.98.45.134:8090/moa/amos-boot-biz into develop_dl_plan6_temp
parents 05dfaad3 3bad6998
......@@ -146,8 +146,8 @@ public class RouteController extends AbstractBaseController {
String orgCode =reginParams.getPersonIdentity().getCompanyBizOrgCode();
//2.查询
List<Route> routeList = routeService.queryRouteListNew(orgCode);
routeList.stream().filter(e->e.getIsExist().equals("true"));
return CommonResponseUtil.success(routeList);
List<Route> list = routeList.stream().filter(e -> e.getIsExist().equals("true")).collect(Collectors.toList());
return CommonResponseUtil.success(list);
} catch (Exception e) {
log.error(e.getMessage(), e);
return CommonResponseUtil.failure("查询巡检路线信息失败");
......
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