Commit 3b1612be authored by p x's avatar p x
Browse files

333_1

parents 0d2b8bf5 f43d14e9
...@@ -2,6 +2,7 @@ package com.cusc.adas.v2x.clouddecision.vo; ...@@ -2,6 +2,7 @@ package com.cusc.adas.v2x.clouddecision.vo;
import com.cusc.adas.v2x.utils.FieldDef; import com.cusc.adas.v2x.utils.FieldDef;
import com.cusc.adas.v2x.utils.Order; import com.cusc.adas.v2x.utils.Order;
import com.cusc.adas.v2x.utils.RefNumFlag;
import com.cusc.adas.v2x.vo.Position2D; import com.cusc.adas.v2x.vo.Position2D;
/**** /****
...@@ -13,8 +14,9 @@ public class PathPath { ...@@ -13,8 +14,9 @@ public class PathPath {
private short pathIdLen; private short pathIdLen;
//分段编号 //分段编号
@Order(2) @Order(2)
// @FieldDef(type = "BYTE", isArray = true, length = 1) @RefNumFlag(value="pathIdLen")
private short pathId; @FieldDef(type="BYTE",isAutoLength=true)
private String pathId;
//关联 GNSS 点 数量 //关联 GNSS 点 数量
@Order(3) @Order(3)
private short pointsNum; private short pointsNum;
...@@ -29,6 +31,8 @@ public class PathPath { ...@@ -29,6 +31,8 @@ public class PathPath {
private short pathNameLen; private short pathNameLen;
//分段名称 //分段名称
@Order(7) @Order(7)
@RefNumFlag(value="pathNameLen")
@FieldDef(type="BYTE",isAutoLength=true)
private String pathName; private String pathName;
//分段类型 1:路口内连接路段,0xFF 表示缺省 2=红色 3=绿色 4=感知车(画感知车) //分段类型 1:路口内连接路段,0xFF 表示缺省 2=红色 3=绿色 4=感知车(画感知车)
@Order(7) @Order(7)
......
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