Commit 42833488 by zzrdark

1.修改渠道号统计模块Bug

parent 8e3ae77f
spring:
profiles:
active: prod
active: dev
application:
name: cneeds-server-authorization
server:
......
spring:
profiles:
active: prod
active: dev
application:
name: cneeds-server-datashow
server:
......
......@@ -182,6 +182,10 @@ public class DeviceChannelController {
deviceInfoChannelEntities = deviceInfoChannelService.queryDeviceInfoChannelByChannelIds(channelIds);
}
if (deviceInfoChannelEntities == null || deviceInfoChannelEntities.size() == 0){
return new LinkedList<>();
}
Set<Long> deviceIds = new HashSet<>();
Map<Long,List<Long>> deviceIdChannelMap = new HashMap<Long,List<Long>>();
deviceInfoChannelEntities.forEach(deviceInfoChannel -> {
......
spring:
profiles:
active: prod
active: dev
application:
name: cneeds-server-device
......
spring:
profiles:
active: prod
active: dev
application:
name: cneeds-server-logupload
......
spring:
profiles:
active: prod
active: dev
application:
name: cneeds-server-user
......
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