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
eec7669b
Commit
eec7669b
authored
Sep 22, 2025
by
p x
Browse files
路径规划get字段
parent
5962922d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/cusc/adas/v2x/clouddecision/dto/PathPathDto.java
View file @
eec7669b
...
...
@@ -41,6 +41,10 @@ public class PathPathDto {
@Order
(
3
)
// 服务器给的
private
short
pathType
;
public
short
getPointsNum
()
{
return
pointsNum
;
}
public
List
<
Position2DDto
>
getPointsPos
()
{
return
pointsPos
;
}
...
...
src/main/java/com/cusc/adas/v2x/utils/Parse.java
View file @
eec7669b
...
...
@@ -28,7 +28,7 @@ public class Parse {
Field
[]
fields
=
t
.
getClass
().
getDeclaredFields
();
List
<
Field
>
fList
=
new
ArrayList
<>();
SortedMap
<
Integer
,
Field
>
rstMap
=
new
TreeMap
<>();
//
SortedMap<Integer, Field> rstMap = new TreeMap<>();
for
(
Field
field
:
fields
)
{
...
...
@@ -185,7 +185,7 @@ public class Parse {
}
rstMap
.
put
(
num
,
field
);
//
rstMap.put(num, field);
}
}
return
t
;
...
...
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