增加int字段
This commit is contained in:
parent
13ed3c733c
commit
59a531ed15
@ -93,6 +93,7 @@ message CommonInfo {
|
||||
string graphicType = 2;
|
||||
Transform transform = 3;
|
||||
repeated ChildTransform childTransforms = 4;
|
||||
int32 newId = 5;
|
||||
}
|
||||
|
||||
// message Link {
|
||||
@ -134,6 +135,8 @@ message ConcentrationDividingLine {
|
||||
string refRightStationId = 5;//右边关联的集中站id
|
||||
repeated NodeConWithSec nodeConWithSecs = 6;// 集中区分割线与区段的交点
|
||||
bool isOtherLineConcentrationDividingLine = 7;//集中区分割线绘制在其它线的边界处
|
||||
int32 newrefLeftStationId = 8;//左边关联的集中站id
|
||||
int32 newrefRightStationId = 9;//右边关联的集中站id
|
||||
}
|
||||
|
||||
message NodeConWithSec {
|
||||
@ -159,6 +162,8 @@ message Platform {
|
||||
string refSectionId = 10; //关联的物理区段id
|
||||
string refEsbRelayCode = 11;//关联的紧急停车继电器的编号
|
||||
TypeOfPlatform type = 12; //站台的上下行
|
||||
int32 newrefStationId = 13; //关联的车站的id
|
||||
int32 newrefSectionId = 14; //关联的物理区段id
|
||||
}
|
||||
|
||||
message ScreenDoor {
|
||||
@ -167,6 +172,7 @@ message ScreenDoor {
|
||||
//int32 sonDoorAmount = 3; //子屏蔽门的数量
|
||||
string refPlatformId = 4; //关联的站台
|
||||
//repeated ScreenDoorGroup screenDoorGroupList = 5;//编组列表
|
||||
int32 newRefPlatformId = 6; //关联的站台
|
||||
}
|
||||
|
||||
message ScreenDoorConfig {
|
||||
@ -193,12 +199,13 @@ message Station {
|
||||
//string stationNameAcronym = 10; // 车站名缩写
|
||||
bool depots = 11; //是否车辆段
|
||||
repeated string manageStations = 12; // 如果是集中站——管理的车站-id
|
||||
repeated int32 newmanageStations = 13; // 如果是集中站——管理的车站-id
|
||||
}
|
||||
|
||||
message TrainWindow {
|
||||
CommonInfo common = 1;
|
||||
string code = 2;
|
||||
string sectionId = 3;
|
||||
int32 sectionId = 3;
|
||||
}
|
||||
|
||||
message AxleCounting {
|
||||
@ -215,11 +222,14 @@ message AxleCounting {
|
||||
//bool invent = 6; //是否虚拟计轴--一般是最末端
|
||||
TypeDetectionPoint type = 7; //检测点的类型:计轴、区段边界
|
||||
repeated string centralizedStations = 8; // 集中站Id列表
|
||||
repeated int32 newcentralizedStations = 9; // 集中站Id列表
|
||||
}
|
||||
|
||||
message GenerateAxleCountingConfig {
|
||||
repeated string bbConnect = 1; //需要在道岔bb连接处生成计轴的道岔id(填一个就行)
|
||||
repeated string noGenerateGroup = 2;//指定的道岔组不生成计轴
|
||||
repeated int32 newbbConnect = 3; //需要在道岔bb连接处生成计轴的道岔id(填一个就行)
|
||||
repeated int32 newnoGenerateGroup = 4;//指定的道岔组不生成计轴
|
||||
}
|
||||
|
||||
// message Train {
|
||||
@ -256,6 +266,10 @@ message Turnout { //(后端不关注)
|
||||
string pcTrackSectionId = 17; // C端轨道区段id
|
||||
SwitchMachineType switchMachineType = 18; // 转辙机类型
|
||||
repeated string centralizedStations = 19; // 集中站Id列表
|
||||
repeated int32 newcentralizedStations = 20; // 集中站Id列表
|
||||
int32 newpaTrackSectionId = 21; // A端轨道区段id
|
||||
int32 newpbTrackSectionId = 22; // B端轨道区段id
|
||||
int32 newpcTrackSectionId = 23; // C端轨道区段id
|
||||
}
|
||||
|
||||
|
||||
@ -299,6 +313,7 @@ message Signal {
|
||||
Model mt = 10;
|
||||
//string belongStation = 11; // 所属车站(缩写)
|
||||
Direction direction = 12; // 上下行
|
||||
repeated int32 newcentralizedStations = 13; // 集中站Id列表
|
||||
}
|
||||
|
||||
/** 上下行(区段/信号机) */
|
||||
@ -336,6 +351,9 @@ message Section {
|
||||
RunningDirection normalRunningDirection = 14; //常规运行方向
|
||||
bool isTurnBackZone = 15; // 是否为折返区域
|
||||
Direction direction = 16; // 上下行
|
||||
repeated int32 newaxleCountings = 17; // 区段对应的计轴
|
||||
int32 newtrackSectionId = 18; // 下属轨道区段id
|
||||
repeated int32 newcentralizedStations = 19; // 集中站Id列表
|
||||
}
|
||||
|
||||
//关联设备
|
||||
@ -363,6 +381,7 @@ message RelatedRef {
|
||||
DeviceType deviceType = 1; //关联的设备类型
|
||||
string id = 2; //关联的设备ID
|
||||
DevicePort devicePort = 3; //关联的设备端口
|
||||
int32 newid = 4;
|
||||
}
|
||||
|
||||
//计轴区段与道岔的位置关系
|
||||
@ -394,6 +413,7 @@ message Transponder { // 应答器
|
||||
repeated string centralizedStations = 7; // 集中站Id列表
|
||||
bytes fixedTelegram = 8;//无源应答器固定报文
|
||||
TransponderTypeEnum type = 9;//应答器类型
|
||||
repeated int32 newcentralizedStations = 10; // 集中站Id列表
|
||||
}
|
||||
|
||||
message SimpleRef {
|
||||
@ -403,6 +423,7 @@ message SimpleRef {
|
||||
}
|
||||
DeviceType deviceType = 1;
|
||||
string id = 2;
|
||||
string newid = 3;
|
||||
}
|
||||
|
||||
message SectionLink {
|
||||
@ -438,6 +459,8 @@ message LogicSection { // 逻辑区段
|
||||
string axleSectionId = 4; // 关联的计轴区段Id
|
||||
// int32 index = 5; // 索引编号
|
||||
string turnoutId = 6; // 关联的岔芯对应的道岔id,此时该逻辑区段为该道岔C端关联的轨道link
|
||||
int32 newaxleSectionId = 7; // 关联的计轴区段Id
|
||||
int32 newturnoutId = 8; // 关联的岔芯对应的道岔id,此时该逻辑区段为该道岔C端关联的轨道link
|
||||
}
|
||||
|
||||
message TrackSection { //轨道区段
|
||||
@ -455,6 +478,7 @@ message TrackSection { //轨道区段
|
||||
// //关联的物理设备id(物理区段/道岔)由另一端(物理区段/道岔处理)
|
||||
bool isCurve = 8; // 是否曲线
|
||||
int32 segmentsCount = 9; // 曲线分段数
|
||||
repeated int32 newtrackLogicSection = 10; //下属的逻辑区段id(非岔区)
|
||||
}
|
||||
|
||||
message TrackLogicSection { //轨道逻辑区段
|
||||
@ -487,6 +511,8 @@ message SpksSwitch {
|
||||
// int32 refStand = 5; //关联站台索引
|
||||
repeated string refSections = 6; // 关联物理区段id
|
||||
string refStand = 7; // 关联站台
|
||||
repeated int32 newrefSections = 8; // 关联物理区段id
|
||||
int32 newrefStand = 9; // 关联站台
|
||||
}
|
||||
|
||||
message EsbButton {
|
||||
@ -496,6 +522,7 @@ message EsbButton {
|
||||
// int32 index = 4; //索引
|
||||
// int32 refStand = 5; // 关联站台索引
|
||||
string refStand = 6; // 关联站台
|
||||
int32 newrefStand = 7; // 关联站台
|
||||
}
|
||||
|
||||
message GatedBox {
|
||||
@ -505,6 +532,7 @@ message GatedBox {
|
||||
// int32 index = 4; //索引
|
||||
string refScreenDoor = 5; // 关联屏蔽门
|
||||
string refGatedBoxMapCode = 6; // 关联门控箱地图Code
|
||||
int32 newrefScreenDoor = 7; // 关联屏蔽门
|
||||
}
|
||||
|
||||
/** 坡度公里标 */
|
||||
@ -538,6 +566,7 @@ message Slope {
|
||||
repeated Point points = 2;
|
||||
sint32 slopeNumber = 3; //坡度的值--正负代表上下坡
|
||||
repeated string refDeviceId = 4; // 坡度关联的(坡度公里标)
|
||||
repeated int32 newrefDeviceId = 5; // 坡度关联的(坡度公里标)
|
||||
}
|
||||
|
||||
message Curvature {
|
||||
@ -545,6 +574,7 @@ message Curvature {
|
||||
repeated Point points = 2;
|
||||
sint32 curvatureNumber = 3; //曲线的半径--正代表外侧;负代表内侧
|
||||
repeated string refDeviceId = 4; // 曲线关联的(曲度公里标)
|
||||
repeated int32 newrefDeviceId = 5; // 曲线关联的(曲度公里标)
|
||||
}
|
||||
|
||||
// 计算link结构
|
||||
@ -568,6 +598,7 @@ message DepartureTimer {
|
||||
string code = 2;
|
||||
string refStand = 3; // 关联站台
|
||||
string runDirection = 4; //运行方向
|
||||
int32 newrefStand = 5; // 关联站台
|
||||
}
|
||||
|
||||
message AutoReturnBox {
|
||||
@ -576,6 +607,7 @@ message AutoReturnBox {
|
||||
bool flip = 3; // 是否翻转(前端显示)
|
||||
int32 index = 4; //索引
|
||||
string refStand = 5; // 关联站台
|
||||
int32 newrefStand = 6; // 关联站台
|
||||
}
|
||||
|
||||
message UniqueIdOfStationLayout {
|
||||
@ -605,6 +637,7 @@ message DeviceCombinationtype {
|
||||
message SectionCodePoint {
|
||||
string centralizedStation = 1;
|
||||
repeated string sectionIds = 2; //物理区段id列表
|
||||
repeated int32 newsectionIds = 3; //物理区段id列表
|
||||
}
|
||||
|
||||
// 列车信息
|
||||
@ -627,4 +660,5 @@ message Train {
|
||||
message OtherLine {
|
||||
string name = 1;
|
||||
repeated string ids = 2; // 设备id列表
|
||||
repeated int32 newids = 3; // 设备id列表
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user