驱动继电器列表初提交

This commit is contained in:
joylink_zhaoerwei 2023-10-25 14:36:11 +08:00
parent 60ead5ac3d
commit b18218fdb1

View File

@ -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
}