Commit 1c1e8fae authored by p x's avatar p x
Browse files

修改注释

parent c0a57e04
...@@ -19,9 +19,13 @@ ...@@ -19,9 +19,13 @@
# If you keep the line number information, uncomment this to # If you keep the line number information, uncomment this to
# hide the original source file name. # hide the original source file name.
#-renamesourcefileattribute SourceFile #-renamesourcefileattribute SourceFile
# -- 解析Bean # -- 解析Bean
-keep class com.cusc.adas.v2x.utils**{*;} -keep class com.cusc.adas.v2x.utils.**{*;}
-keep class com.cusc.adas.v2x.events**{*;} -keep @interface com.cusc.adas.v2x.utils.Order.*
-keep class com.cusc.adas.v2x.vo**{*;} -keep @interface com.cusc.adas.v2x.utils.**{*;}
-keep class com.cusc.adas.v2x.dto**{*;} -keep class com.cusc.adas.v2x.events.**{*;}
\ No newline at end of file -keep class com.cusc.adas.v2x.vo.**{*;}
-keep class com.cusc.adas.v2x.dto.**{*;}
...@@ -37,7 +37,7 @@ public class PathPathDto { ...@@ -37,7 +37,7 @@ public class PathPathDto {
// @RefNumFlag(value="pathNameLen") // 服务器给的1 // @RefNumFlag(value="pathNameLen") // 服务器给的1
// @FieldDef(type="BYTE",isAutoLength=true) // @FieldDef(type="BYTE",isAutoLength=true)
// private String pathName; // private String pathName;
//分段类型 1:路口内连接路段,0xFF 表示缺省 2=红色 3=绿色 4=感知车(画感知车) //0:常规路段(全局路径);1:路口内连接路段,0xFF 表示缺 省 2=路面状况颜色(路径里的红色、施工区域红色、人行道红色) 3=绿色(绿波) 4=感知车前的红色 5=拥堵红色
@Order(3) // 服务器给的 @Order(3) // 服务器给的
private short pathType; private short pathType;
......
...@@ -19,7 +19,8 @@ public class PathPath { ...@@ -19,7 +19,8 @@ public class PathPath {
@RefNumFlag(value = "pointsNum") @RefNumFlag(value = "pointsNum")
private List<Position2D> pointsPos; private List<Position2D> pointsPos;
@Order(3) // 服务器给的 //0:常规路段(全局路径);1:路口内连接路段,0xFF 表示缺 省 2=路面状况颜色(路径里的红色、施工区域红色、人行道红色) 3=绿色(绿波) 4=感知车前的红色 5=拥堵红色
@Order(3)
private short pathType; private short pathType;
} }
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