psl数据调整

This commit is contained in:
fan 2023-10-12 10:12:02 +08:00
parent a8fa6fec18
commit 2b6e6b32a2

View File

@ -10,6 +10,7 @@ message PslGraphicStorage {
repeated PslButton pslButtons = 3;
repeated PslKey pslKeys = 4;
repeated PslText pslTexts = 5;
repeated GatedRelateDevice gatedRelateDeviceList = 6;
}
@ -50,3 +51,14 @@ message PslText {
string color = 4;
int32 fontSize = 5;
}
/* 门控箱关联的设备列表 */
message GatedRelateDevice {
string code = 1;//
repeated Combinationtype combinationtypes = 2; //
graphicData.RelatedRef.DeviceType deviceType = 3;//
}
message Combinationtype {
string code = 1;
repeated string refDevices = 2;//
}