合并防淹门车库门取消车库门按钮

This commit is contained in:
joylink_fanyuhong 2024-03-28 09:11:45 +08:00
parent f9034ba53d
commit 4c3937a7dc

View File

@ -54,8 +54,8 @@ message RtssGraphicStorage {
repeated PslBox pslBoxs = 44; // psl地图打开按钮 repeated PslBox pslBoxs = 44; // psl地图打开按钮
repeated CarWashing carWashings = 45; // repeated CarWashing carWashings = 45; //
repeated GarageDoor garageDoors = 46; // repeated GarageDoor garageDoors = 46; //
repeated FloodGate floodGates = 47; // //repeated FloodGate floodGates = 47; //
repeated GarageDoorBox garageDoorBoxes = 48; //Psl开启按钮 //repeated GarageDoorBox garageDoorBoxes = 48; //Psl开启按钮
} }
message Canvas { message Canvas {
@ -585,12 +585,13 @@ message CurvatureKiloMarker {
string code = 2; string code = 2;
repeated KilometerSystem kilometerSystem = 4; // repeated KilometerSystem kilometerSystem = 4; //
} }
/** 车库门 */ /** 车库门(防淹门) */
message GarageDoor { message GarageDoor {
CommonInfo common = 1; CommonInfo common = 1;
string code = 2; string code = 2;
uint32 linkSection = 3; // uint32 linkSection = 3; //
repeated uint32 centralizedStations = 4; // Id列表; repeated uint32 centralizedStations = 4; // Id列表;
string refPslMapCode = 3; // Psl地图的code
} }
/** 洗车机 */ /** 洗车机 */
message CarWashing { message CarWashing {
@ -599,13 +600,6 @@ message CarWashing {
uint32 linkSection = 3; // uint32 linkSection = 3; //
repeated uint32 centralizedStations = 4; // Id列表; repeated uint32 centralizedStations = 4; // Id列表;
} }
/** 防淹门 */
message FloodGate {
CommonInfo common = 1;
string code = 2;
uint32 linkSection = 3; //
repeated uint32 centralizedStations = 4; // Id列表;
}
/** 信标 */ /** 信标 */
message Beacon { message Beacon {
enum BeaconType { enum BeaconType {
@ -724,12 +718,3 @@ message OtherLine {
repeated string oldids = 2; // id列表 repeated string oldids = 2; // id列表
repeated uint32 ids = 3; // id列表 repeated uint32 ids = 3; // id列表
} }
//
message GarageDoorBox {
CommonInfo common = 1;
string code = 2;
string refPslMapCode = 3; // Psl地图的code
uint32 refGarageDoorId = 4; // id
bool flip = 5; //
}