采集继电器列表初提交
This commit is contained in:
parent
6827f9671a
commit
f0bfa36757
@ -14,6 +14,7 @@ message RelayCabinetGraphicStorage {
|
|||||||
repeated PhaseFailureProtector phaseFailureProtectors = 7;
|
repeated PhaseFailureProtector phaseFailureProtectors = 7;
|
||||||
repeated Combinationtype combinationtypeList = 8;
|
repeated Combinationtype combinationtypeList = 8;
|
||||||
repeated SignalFaultAlarm signalFaultAlarms = 9;
|
repeated SignalFaultAlarm signalFaultAlarms = 9;
|
||||||
|
CiCj ciCjList = 10;//采集列表
|
||||||
}
|
}
|
||||||
|
|
||||||
message RelayCabinet {
|
message RelayCabinet {
|
||||||
@ -70,3 +71,27 @@ message UniqueIdType {
|
|||||||
string lineId = 2;//线路号
|
string lineId = 2;//线路号
|
||||||
string belongsConcentrationStation = 3;//继电器柜图所属集中站
|
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对应着吸合
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user