Commit fa6879c5 authored by p x's avatar p x
Browse files

修复int转float

parent f1223347
...@@ -42,7 +42,7 @@ public class RSISDetailDto { ...@@ -42,7 +42,7 @@ public class RSISDetailDto {
//交通事件/标 志作用中心线 坐标点 //交通事件/标 志作用中心线 坐标点
private PositionDto alertPath; private PositionDto alertPath;
//交通标志/事 件作用中心线 范围半径 //交通标志/事 件作用中心线 范围半径
private int pathRadius; private float pathRadius;
//事件状态 //事件状态
private short status; private short status;
......
...@@ -20,4 +20,8 @@ public class PositionDto { ...@@ -20,4 +20,8 @@ public class PositionDto {
public double getLatitude() { public double getLatitude() {
return latitude; return latitude;
} }
public double getElevation() {
return elevation;
}
} }
package com.cusc.adas.v2x.vo; package com.cusc.adas.v2x.vo;
import com.cusc.adas.v2x.utils.Order;
/** /**
* 限速 信息 * 限速 信息
* @author huangml * @author huangml
...@@ -8,7 +10,9 @@ package com.cusc.adas.v2x.vo; ...@@ -8,7 +10,9 @@ package com.cusc.adas.v2x.vo;
public class SpeedLimit { public class SpeedLimit {
//车道编 号 //车道编 号
@Order(1)
private short laneId; private short laneId;
//限速值 //限速值
@Order(2)
private short speedLimit; private short speedLimit;
} }
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