20 lines
456 B
Protocol Buffer
20 lines
456 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseRequest.proto";
|
||
|
|
||
|
message LbsRoomRequest {
|
||
|
required BaseRequest _BaseRequest = 1;
|
||
|
required uint32 _OpCode = 2;
|
||
|
required float _Longitude = 3;
|
||
|
required float _Latitude = 4;
|
||
|
required int32 _Precision = 5;
|
||
|
optional string _MacAddr = 6;
|
||
|
optional string _CellId = 7;
|
||
|
optional int32 _GPSSource = 8;
|
||
|
optional string _RoomName = 9;
|
||
|
optional int32 _ExitScene = 10;
|
||
|
optional int32 _StayTime = 11;
|
||
|
}
|