You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
374 B
22 lines
374 B
syntax = "proto3";
|
|
package queue;
|
|
|
|
option java_package = "com.thing.common.data.proto";
|
|
option java_outer_classname = "QueueProto";
|
|
|
|
message DataProto {
|
|
TsKvProto tskvProto = 1;
|
|
}
|
|
|
|
message TsKvProto {
|
|
string thingCode = 1;
|
|
int64 ts = 2;
|
|
string key = 3;
|
|
string val = 4;
|
|
int32 year = 5;
|
|
int32 month = 6;
|
|
int32 day = 7;
|
|
int32 hour = 8;
|
|
int32 minute = 9;
|
|
}
|
|
|