采集继电器列表初提交

This commit is contained in:
joylink_zhaoerwei 2023-10-24 17:03:53 +08:00
parent 6827f9671a
commit f0bfa36757

View File

@ -14,6 +14,7 @@ message RelayCabinetGraphicStorage {
repeated PhaseFailureProtector phaseFailureProtectors = 7;
repeated Combinationtype combinationtypeList = 8;
repeated SignalFaultAlarm signalFaultAlarms = 9;
CiCj ciCjList = 10;//
}
message RelayCabinet {
@ -70,3 +71,27 @@ message UniqueIdType {
string lineId = 2;//线
string belongsConcentrationStation = 3;//
}
/* 采集 */
message CiCj {
int32 dsCount = 1;//excel表行数
repeated CjDataSet cjList = 2;//excel表列数--
}
message CjDataSet {
string name = 1;//excel中的列名'D1'
repeated CjData bitList = 2;//excel中的一列的数据
}
message CjData {
repeated CjDataItem refRelays=1;//
}
message CjDataItem {
enum PostionType {
Q=0;
H=1;
}
string relayId = 1;//Id
PostionType position = 2;//QH对应着吸合
}