From b18218fdb1010060171c3ac733d9fb3ad209b259 Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Wed, 25 Oct 2023 14:36:11 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A9=B1=E5=8A=A8=E7=BB=A7=E7=94=B5=E5=99=A8?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E5=88=9D=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/relayCabinetLayoutGraphics.proto | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/protos/relayCabinetLayoutGraphics.proto b/protos/relayCabinetLayoutGraphics.proto index 1c78547..f119b86 100644 --- a/protos/relayCabinetLayoutGraphics.proto +++ b/protos/relayCabinetLayoutGraphics.proto @@ -15,6 +15,7 @@ message RelayCabinetGraphicStorage { repeated Combinationtype combinationtypeList = 8; repeated SignalFaultAlarm signalFaultAlarms = 9; CiCj ciCjList = 10;//采集列表 + CiQd ciQdList = 11;//驱动列表 } message RelayCabinet { @@ -95,3 +96,18 @@ message CjDataItem { string relayId = 1;//采集对应的继电器Id PostionType position = 2;//继电器的位置,QH对应着吸合 } + +/* 驱动 */ +message CiQd { + int32 dsCount = 1;//数据集位数——对应着excel表行数 + repeated QdDataSet qdList = 2;//驱动列表(二维数据,数组长度对应着excel表列数--数据集个数) +} + +message QdDataSet { + string name = 1;//对应着excel中的列名,如'D1' + repeated QdData bitList = 2;//对应着excel中的一列的数据 +} + +message QdData { + repeated string refRelays=1;//驱动的继电器Id +}