Merge branch 'master' of https://git.code.tencent.com/xian-ncc-da/xian-ncc-da-message
This commit is contained in:
commit
28119c0743
@ -15,14 +15,14 @@ message Section {
|
|||||||
// 区段类型
|
// 区段类型
|
||||||
graphicData.Section.SectionType type = 3;
|
graphicData.Section.SectionType type = 3;
|
||||||
|
|
||||||
// 公里标
|
|
||||||
repeated graphicData.KilometerSystem kilometerSystem = 4;
|
|
||||||
|
|
||||||
// 关联区段
|
// 关联区段
|
||||||
repeated Section children = 5;
|
repeated Section children = 4;
|
||||||
|
|
||||||
|
// 公里标
|
||||||
|
repeated graphicData.KilometerSystem kilometerSystem = 5;
|
||||||
|
|
||||||
// 转换后的公里标数字
|
// 转换后的公里标数字
|
||||||
repeated int64 convertKilometer = 6;
|
repeated int64 convertKilometer = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 道岔
|
// 道岔
|
||||||
@ -32,14 +32,10 @@ message Switch {
|
|||||||
|
|
||||||
string code = 2;
|
string code = 2;
|
||||||
|
|
||||||
graphicData.KilometerSystem switchKilometerSystem = 3;
|
|
||||||
|
|
||||||
int64 switchConvertKilometer = 4;
|
|
||||||
|
|
||||||
// 关联道岔的公里标
|
// 关联道岔的公里标
|
||||||
repeated graphicData.KilometerSystem kilometerSystem = 5;
|
repeated graphicData.KilometerSystem kilometerSystem = 3;
|
||||||
|
|
||||||
// 转换后的公里标数字
|
// 转换后的公里标数字
|
||||||
repeated int64 convertKilometer = 6;
|
repeated int64 convertKilometer = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,13 +153,14 @@ message IscsFan {
|
|||||||
message Turnout {
|
message Turnout {
|
||||||
CommonInfo common = 1;
|
CommonInfo common = 1;
|
||||||
string code = 2;
|
string code = 2;
|
||||||
repeated Point pointA = 6; // A端坐标列表
|
repeated Point pointA = 6; // A端坐标列表
|
||||||
repeated Point pointB = 7; // B端坐标列表
|
repeated Point pointB = 7; // B端坐标列表
|
||||||
repeated Point pointC = 8; // C端坐标列表
|
repeated Point pointC = 8; // C端坐标列表
|
||||||
RelatedRef paRef = 9; // 道岔A端关联的设备
|
RelatedRef paRef = 9; // 道岔A端关联的设备
|
||||||
RelatedRef pbRef = 10; // 道岔B端关联的设备
|
RelatedRef pbRef = 10; // 道岔B端关联的设备
|
||||||
RelatedRef pcRef = 11; // 道岔C端关联的设备
|
RelatedRef pcRef = 11; // 道岔C端关联的设备
|
||||||
KilometerSystem kilometerSystem = 12; // 道岔公里标
|
// KilometerSystem kilometerSystem = 12; // 道岔公里标
|
||||||
|
repeated KilometerSystem kilometerSystem = 13; // 道岔公里标
|
||||||
}
|
}
|
||||||
|
|
||||||
message KilometerSystem {
|
message KilometerSystem {
|
||||||
|
@ -35,9 +35,9 @@ message TrainInfo {
|
|||||||
// 列车状态
|
// 列车状态
|
||||||
// int32 mode = 14;
|
// int32 mode = 14;
|
||||||
state.TrainMode mode = 14;
|
state.TrainMode mode = 14;
|
||||||
// 到点
|
// 到点 时间戳 精确到秒 10位长度
|
||||||
int64 arriveTime = 15;
|
int64 arriveTime = 15;
|
||||||
// 发点
|
// 发点 时间戳 精确到秒 10位长度
|
||||||
int64 departTime = 16;
|
int64 departTime = 16;
|
||||||
// 速度
|
// 速度
|
||||||
float speed = 17;
|
float speed = 17;
|
||||||
@ -145,7 +145,7 @@ message TrainRecord{
|
|||||||
* true-到达,false-出发
|
* true-到达,false-出发
|
||||||
*/
|
*/
|
||||||
bool recordType = 12;
|
bool recordType = 12;
|
||||||
/** 到发时间(7) */
|
/** 到发时间(7) 时间戳 精确到秒 10位长度 */
|
||||||
int64 recordTime = 13;
|
int64 recordTime = 13;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -61,16 +61,13 @@ message WsLineNetTrainOffsetMessage {
|
|||||||
// 车组号
|
// 车组号
|
||||||
string groupId = 3;
|
string groupId = 3;
|
||||||
|
|
||||||
// 目的地ID
|
|
||||||
int32 destinationId = 4;
|
|
||||||
|
|
||||||
//是否显示
|
//是否显示
|
||||||
bool show = 5;
|
bool show = 4;
|
||||||
|
|
||||||
// 列车公里标
|
// 列车公里标
|
||||||
int64 kilometerCode = 6;
|
int64 kilometerCode = 5;
|
||||||
|
|
||||||
// 运行方向
|
// 运行方向
|
||||||
int32 dir = 7;
|
int32 dir = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user