|
@ -321,6 +321,8 @@ public class TrafficStatistics { |
|
|
data.setPeriodType(TrafficDataPeriodTypeEnum.DAY); |
|
|
data.setPeriodType(TrafficDataPeriodTypeEnum.DAY); |
|
|
// 将设备的桩号转换为整数后设置
|
|
|
// 将设备的桩号转换为整数后设置
|
|
|
data.setStakeMark(dcDevice.stakeMarkToInt()); |
|
|
data.setStakeMark(dcDevice.stakeMarkToInt()); |
|
|
|
|
|
// 设置设备类型
|
|
|
|
|
|
data.setDeviceType(Integer.valueOf(dcDevice.getDeviceType())); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -459,6 +461,8 @@ public class TrafficStatistics { |
|
|
aggregatedData.setDirection(firstDcTrafficSectionData.getDirection()); |
|
|
aggregatedData.setDirection(firstDcTrafficSectionData.getDirection()); |
|
|
// 上报时间
|
|
|
// 上报时间
|
|
|
aggregatedData.setReportTime(firstDcTrafficSectionData.getReportTime()); |
|
|
aggregatedData.setReportTime(firstDcTrafficSectionData.getReportTime()); |
|
|
|
|
|
// 设备类型
|
|
|
|
|
|
aggregatedData.setDeviceType(firstDcTrafficSectionData.getDeviceType()); |
|
|
|
|
|
|
|
|
// 计算平均车速并设置到汇总统计对象中
|
|
|
// 计算平均车速并设置到汇总统计对象中
|
|
|
if (trafficVolume != 0) { |
|
|
if (trafficVolume != 0) { |
|
|