Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
p x
earlywarning
Commits
fa6879c5
Commit
fa6879c5
authored
Jul 15, 2025
by
p x
Browse files
修复int转float
parent
f1223347
Changes
3
Show whitespace changes
Inline
Side-by-side
src/main/java/com/cusc/adas/v2x/clouddecision/dto/RSISDetailDto.java
View file @
fa6879c5
...
...
@@ -42,7 +42,7 @@ public class RSISDetailDto {
//交通事件/标 志作用中心线 坐标点
private
PositionDto
alertPath
;
//交通标志/事 件作用中心线 范围半径
private
in
t
pathRadius
;
private
floa
t
pathRadius
;
//事件状态
private
short
status
;
...
...
src/main/java/com/cusc/adas/v2x/dto/PositionDto.java
View file @
fa6879c5
...
...
@@ -20,4 +20,8 @@ public class PositionDto {
public
double
getLatitude
()
{
return
latitude
;
}
public
double
getElevation
()
{
return
elevation
;
}
}
src/main/java/com/cusc/adas/v2x/vo/SpeedLimit.java
View file @
fa6879c5
package
com.cusc.adas.v2x.vo
;
import
com.cusc.adas.v2x.utils.Order
;
/**
* 限速 信息
* @author huangml
...
...
@@ -8,7 +10,9 @@ package com.cusc.adas.v2x.vo;
public
class
SpeedLimit
{
//车道编 号
@Order
(
1
)
private
short
laneId
;
//限速值
@Order
(
2
)
private
short
speedLimit
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment