更换原属性为old
This commit is contained in:
parent
da9e750edd
commit
fa88eaa429
@ -65,11 +65,11 @@ message ChildTransform {
|
|||||||
}
|
}
|
||||||
// 公共属性
|
// 公共属性
|
||||||
message CommonInfo {
|
message CommonInfo {
|
||||||
string id = 1;
|
string oldid = 1;
|
||||||
string graphicType = 2;
|
string graphicType = 2;
|
||||||
Transform transform = 3;
|
Transform transform = 3;
|
||||||
repeated ChildTransform childTransforms = 4;
|
repeated ChildTransform childTransforms = 4;
|
||||||
uint32 nid = 5;
|
uint32 id = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Link {
|
message Link {
|
||||||
@ -107,11 +107,11 @@ message Platform {
|
|||||||
bool hasdoor = 3; // 是否有屏蔽门
|
bool hasdoor = 3; // 是否有屏蔽门
|
||||||
string direction = 4; // 行驶方向--屏蔽门上下
|
string direction = 4; // 行驶方向--屏蔽门上下
|
||||||
// string upAndDown =5; //上下行--upLink表示上行,downLink表示下行
|
// string upAndDown =5; //上下行--upLink表示上行,downLink表示下行
|
||||||
string refStation = 6; //关联的车站
|
string oldrefStation = 6; //关联的车站
|
||||||
bool up = 7; //上下行--true表示上行,false表示下行
|
bool up = 7; //上下行--true表示上行,false表示下行
|
||||||
string refSectionId = 8; //关联的物理区段id
|
string oldrefSectionId = 8; //关联的物理区段id
|
||||||
uint32 nrefStation = 9; // 关联的车站id
|
uint32 refStation = 9; // 关联的车站id
|
||||||
uint32 nrefSectionId = 10; // 关联的物理区段id
|
uint32 refSectionId = 10; // 关联的物理区段id
|
||||||
}
|
}
|
||||||
|
|
||||||
message Station {
|
message Station {
|
||||||
@ -139,8 +139,8 @@ message StationLine {
|
|||||||
message TrainWindow {
|
message TrainWindow {
|
||||||
CommonInfo common = 1;
|
CommonInfo common = 1;
|
||||||
string code = 2;
|
string code = 2;
|
||||||
repeated string refDeviceId = 3; //关联的逻辑区段的id或道岔区段id
|
repeated string oldrefDeviceId = 3; //关联的逻辑区段的id或道岔区段id
|
||||||
repeated uint32 nrefDeviceId = 4;
|
repeated uint32 refDeviceId = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message AxleCounting {
|
message AxleCounting {
|
||||||
@ -201,12 +201,12 @@ message RunLine {
|
|||||||
// string upPathLineId = 6;
|
// string upPathLineId = 6;
|
||||||
// string downPathLineId = 7;
|
// string downPathLineId = 7;
|
||||||
repeated string containSta = 8;
|
repeated string containSta = 8;
|
||||||
repeated string linkPathLines = 9; //关联pathLine
|
repeated string oldlinkPathLines = 9; //关联pathLine
|
||||||
string lineId = 10; // 实际线路id
|
string lineId = 10; // 实际线路id
|
||||||
repeated int32 dashPointIndexs = 11; // 虚线段点序号
|
repeated int32 dashPointIndexs = 11; // 虚线段点序号
|
||||||
repeated int32 grayPointIndexs = 12; // 虚线段点序号
|
repeated int32 grayPointIndexs = 12; // 虚线段点序号
|
||||||
string lineColor = 13; // 线路显示颜色
|
string lineColor = 13; // 线路显示颜色
|
||||||
repeated uint32 nlinkPathLines = 14; //关联pathLine
|
repeated uint32 linkPathLines = 14; //关联pathLine
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 物理区段 */
|
/** 物理区段 */
|
||||||
@ -223,10 +223,10 @@ message Section {
|
|||||||
RelatedRef pbRef = 5; // 区段B端关联的物理区段或道岔(非岔区)
|
RelatedRef pbRef = 5; // 区段B端关联的物理区段或道岔(非岔区)
|
||||||
SectionType sectionType = 6; // 区段类型
|
SectionType sectionType = 6; // 区段类型
|
||||||
repeated string axleCountings = 7; // 关联的计轴(岔区&&非岔区)
|
repeated string axleCountings = 7; // 关联的计轴(岔区&&非岔区)
|
||||||
repeated string children = 8; // 下属逻辑区段id(非岔区)/下属道岔id(岔区)
|
repeated string oldchildren = 8; // 下属逻辑区段id(非岔区)/下属道岔id(岔区)
|
||||||
string destinationCode = 9; // 目的地码
|
string destinationCode = 9; // 目的地码
|
||||||
bool turning = 10; //是否转换轨
|
bool turning = 10; //是否转换轨
|
||||||
repeated uint32 nchildren = 11;
|
repeated uint32 children = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 逻辑区段 */
|
/** 逻辑区段 */
|
||||||
@ -267,9 +267,9 @@ message RelatedRef {
|
|||||||
}
|
}
|
||||||
|
|
||||||
DeviceType deviceType = 1; //关联的设备类型
|
DeviceType deviceType = 1; //关联的设备类型
|
||||||
string id = 2; //关联的设备ID
|
string oldid = 2; //关联的设备ID
|
||||||
DevicePort devicePort = 3; //关联的设备端口
|
DevicePort devicePort = 3; //关联的设备端口
|
||||||
uint32 nid = 4;
|
uint32 id = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Separator {// 分隔符
|
message Separator {// 分隔符
|
||||||
|
Loading…
Reference in New Issue
Block a user