合并代码

This commit is contained in:
fan 2023-06-13 15:30:14 +08:00
commit 7ee338d95b

View File

@ -19,6 +19,7 @@ message RtssGraphicStorage {
repeated RunLine runLines = 12;
repeated TrainLine trainLines = 13;
repeated PathLine pathLines = 14;
repeated Polygon polygons = 15;
}
message Canvas {
@ -87,6 +88,14 @@ message Rect {
Point point = 8; //
}
message Polygon {
CommonInfo common = 1;
string code = 2;
int32 lineWidth = 3; // 线
string lineColor = 4; // 线
repeated Point points = 5; //
}
message Platform {
CommonInfo common = 1;
string code = 2;