mirror of
https://gitee.com/farsunset/cim.git
synced 2025-06-17 15:45:24 +08:00
10 lines
159 B
Protocol Buffer
10 lines
159 B
Protocol Buffer
syntax = "proto3";
|
|
message Model {
|
|
string key = 1;
|
|
string code = 2;
|
|
string message = 3;
|
|
int64 timestamp =4;
|
|
map<string,string> data =5;
|
|
|
|
}
|
|
|