Merge branch 'master' of git.code.tencent.com:beijing-rtss-test/bj-rtss-message
This commit is contained in:
commit
5604ad84ed
@ -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;//门控箱关联的设备
|
||||
}
|
||||
|
@ -38,6 +38,8 @@ message RtssGraphicStorage {
|
||||
//UniqueIdType UniqueIdPrefix = 30;//设备唯一编码--前缀
|
||||
UniqueIdOfStationLayout UniqueIdPrefix = 31;//设备唯一编码--前缀
|
||||
repeated KilometerConvert kilometerConvertList = 32;//公里标转换列表
|
||||
repeated ScreenDoor screenDoors = 33;
|
||||
repeated StationRelateDevice stationRelateDeviceList = 34; // 关联设备列表
|
||||
}
|
||||
|
||||
message Canvas {
|
||||
@ -117,13 +119,26 @@ message CommonInfo {
|
||||
message Platform {
|
||||
CommonInfo common = 1;
|
||||
string code = 2;
|
||||
bool hasdoor = 3; // 是否有屏蔽门
|
||||
string direction = 4; // 行驶方向--屏蔽门上下
|
||||
//bool hasdoor = 3; // 是否有屏蔽门
|
||||
//string direction = 4; // 屏蔽门上下
|
||||
int32 index = 5; //索引
|
||||
//int32 refStationIndex = 6; //关联车站索引
|
||||
// repeated string centralizedStations = 7; // 集中站列表
|
||||
string refStation = 8; //关联的车站
|
||||
int32 sonDoorAmount = 9; //子屏蔽门的数量
|
||||
repeated RelatedRef platformRef = 8; //站台关联的车站和物理区段
|
||||
}
|
||||
|
||||
message ScreenDoor {
|
||||
CommonInfo common = 1;
|
||||
string code = 2;
|
||||
int32 sonDoorAmount = 3; //子屏蔽门的数量
|
||||
string refPlatform = 4; //关联的站台
|
||||
repeated ScreenDoorGroup screenDoorGroupList = 5;//编组列表
|
||||
}
|
||||
|
||||
message ScreenDoorGroup {
|
||||
int32 trainGroupAmount = 1; //列车编组数量
|
||||
int32 startSmallDoor = 2; //起始的屏蔽门编号
|
||||
int32 endSmallDoor = 3; //结束的屏蔽门编号
|
||||
}
|
||||
|
||||
message Station {
|
||||
@ -248,6 +263,8 @@ message RelatedRef {
|
||||
AxleCounting = 3;
|
||||
SectionLink = 4;
|
||||
signal = 5;
|
||||
station = 6;
|
||||
ScreenDoor = 7;
|
||||
}
|
||||
|
||||
enum DevicePort {
|
||||
@ -390,6 +407,7 @@ message GatedBox {
|
||||
string code = 2;
|
||||
bool flip = 3; // 是否翻转(前端显示)
|
||||
int32 index = 4; //索引
|
||||
string refScreenDoor = 5; // 关联屏蔽门
|
||||
}
|
||||
|
||||
/** 坡度公里标 */
|
||||
@ -447,3 +465,14 @@ message KilometerConvert {
|
||||
KilometerSystem kmB = 2;
|
||||
bool sameTrend = 3; //相同趋势(同增同减)?
|
||||
}
|
||||
|
||||
/* 车站关联的设备列表 */
|
||||
message StationRelateDevice {
|
||||
string code = 1;//设备编号
|
||||
repeated Combinationtype combinationtypes = 2; //组合类型
|
||||
RelatedRef.DeviceType deviceType = 3;//设备类型
|
||||
}
|
||||
message Combinationtype {
|
||||
string code = 1;
|
||||
repeated string refDevices = 2;//门控箱关联的设备
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user