同步数据类型
This commit is contained in:
parent
92fd4fa663
commit
abf6b79605
17
src/sync_data_message.proto
Normal file
17
src/sync_data_message.proto
Normal file
@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package sync_data_message;
|
||||
import "common.proto";
|
||||
|
||||
// 电子地图数据
|
||||
message SyncData {
|
||||
String operationType = 1;
|
||||
repeated UpdataData datas = 2;
|
||||
}
|
||||
|
||||
|
||||
message UpdataData {
|
||||
uint32 id = 1;
|
||||
string type = 2;
|
||||
bytes data = 3;
|
||||
}
|
Loading…
Reference in New Issue
Block a user