Commit 2ca7a1cc authored by duanruiming's avatar duanruiming

[add] 绿波时序图下速度优化

parent 9af057fb
......@@ -289,6 +289,7 @@ public class GreenBeltServiceImpl implements GreenBeltInfoService {
detail.setCrossId(crossDirDataHistPO.getCrossId());
detail.setFlow(crossDirDataHistPO.getFlow());
detail.setStopTimes(crossDirDataHistPO.getStopTimes());
detail.setSpeed(crossDirDataHistPO.getSpeed());
detailList.add(detail);
}
}
......
......@@ -37,5 +37,8 @@ public class GreenBeltFlowStopTimeVO {
@ApiModelProperty("行程时间")
@JsonSerialize(using = Double2TwoDecimalPlacesSerializer.class)
private Double travelTime;
@ApiModelProperty("速度")
@JsonSerialize(using = Double2TwoDecimalPlacesSerializer.class)
private Double speed;
}
}
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