同步数据调整

This commit is contained in:
joylink_fanyuhong 2024-09-29 14:27:52 +08:00
parent cf202ae8c3
commit 3803c57887

View File

@ -5,6 +5,8 @@ package sync_data_message;
message SyncData { message SyncData {
string operationType = 1; string operationType = 1;
repeated UpdataData datas = 2; repeated UpdataData datas = 2;
string submenu = 3;
string station = 4;
} }
@ -12,6 +14,4 @@ message UpdataData {
uint32 id = 1; uint32 id = 1;
string type = 2; string type = 2;
bytes data = 3; bytes data = 3;
string submenu = 4;
string station = 5;
} }