继电器关联列表

This commit is contained in:
joylink_zhaoerwei 2023-09-08 17:57:19 +08:00
parent cede84e136
commit 5b9b1500b8

View File

@ -8,14 +8,24 @@ message RelayCabinetGraphicStorage {
graphicData.Canvas canvas = 1;
repeated RelayCabinet relayCabinets = 2;
repeated Relay relays = 3;
repeated DeviceRelateRelay deviceRelateRelayList = 4;
}
message RelayCabinet {
graphicData.CommonInfo common = 1;
string code = 2;
graphicData.CommonInfo common = 1;
string code = 2;//
}
message Relay {
graphicData.CommonInfo common = 1;
string code = 2;
string code = 2;//
string model = 3;//
}
/* 设备管理的继电器列表 */
message DeviceRelateRelay {
//int32 id = 1;//id
string type = 2;//
string code = 3;//
repeated string refRelay = 4;//
}