添加箭头

This commit is contained in:
fan 2024-09-13 16:36:37 +08:00
parent d4a3340f7c
commit d5735a58f4

View File

@ -4,6 +4,7 @@ package iscsGraphicData;
message IscsGraphicStorage { message IscsGraphicStorage {
Canvas canvas = 1; Canvas canvas = 1;
UniqueIdOfStationLayout UniqueIdPrefix = 2;// UniqueIdOfStationLayout UniqueIdPrefix = 2;//
repeated Arrow arrows = 3;
} }
message Canvas { message Canvas {
@ -66,3 +67,9 @@ message UniqueIdOfStationLayout {
string lineId = 2;//线 string lineId = 2;//线
string mainCoordinateSystem = 3;// string mainCoordinateSystem = 3;//
} }
message Arrow {
CommonInfo common = 1;
string code = 2;
repeated Point points = 3;
}