Merge remote-tracking branch 'origin/master'

This commit is contained in:
weizhihong 2023-06-20 17:31:31 +08:00
commit 3bd4f023cd

View File

@ -1,50 +0,0 @@
syntax = "proto3";
//
package trans;
import "device_status.proto";
option java_package = "club.joylink.xiannccda.dto.protos";
option java_outer_classname = "TransProto";
//线
message RtuDevicesStorage{
//线
int32 lineId = 1;
//
int32 rtuId = 2;
//true-;false-
bool all = 3;
//
repeated state.Signal signal = 4;
//
repeated state.Switch switch = 5;
//
repeated state.Platform platform = 6;
//
repeated state.Track track =7;
//
repeated state.Rtu rtu = 8;
//
repeated state.Station station = 9;
//
repeated state.Entry entry = 10;
//
repeated state.Scada scada = 11;
//
repeated state.WaterProofDoor waterProofDoor = 12;
//
repeated state.WorkArea workArea = 13;
//
repeated state.Gama gama = 14;
}
//线
message LineDevicesStorage{
//线
int32 lineId = 1;
//true-线;false-
bool all = 2;
//线
repeated RtuDevicesStorage storage = 3;
}