Commit a91493ea authored by duanruiming's avatar duanruiming

[update] 交通流量添加详细事件戳

parent 9dde2e74
...@@ -489,6 +489,7 @@ public class RunningEvaluateServiceImpl implements RunningEvaluateService { ...@@ -489,6 +489,7 @@ public class RunningEvaluateServiceImpl implements RunningEvaluateService {
crossMetrics.setDelayTime(delayTimeSum / size); crossMetrics.setDelayTime(delayTimeSum / size);
crossMetrics.setEffusionRate(effusionRateSum / size); crossMetrics.setEffusionRate(effusionRateSum / size);
crossMetrics.setEmptyPhase(emptyPhaseSum); crossMetrics.setEmptyPhase(emptyPhaseSum);
crossMetrics.setTimeStamp(dtoList.get(0).getStartTime());
} }
res.add(crossMetrics); res.add(crossMetrics);
} }
......
...@@ -81,6 +81,8 @@ public class RunningEvaluateMetricsDetailVO { ...@@ -81,6 +81,8 @@ public class RunningEvaluateMetricsDetailVO {
public static class CrossMetrics { public static class CrossMetrics {
@ApiModelProperty(value = "时间") @ApiModelProperty(value = "时间")
private String metricTime; private String metricTime;
@ApiModelProperty(value = "时间戳")
private Date timeStamp;
@ApiModelProperty(value = "流量") @ApiModelProperty(value = "流量")
private Integer flow; private Integer flow;
......
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