公告板
版本库
filestore
活动
搜索
登录
valib
/
c_bhomedbapi
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
增加根据protobuf转json函数 template <class T> bool bus_dbapi_get_json( T &list, st...
cheliequan
2023-01-17
62f8f9e4ee066ecb562de7969180a07cb3d41f57
[valib/c_bhomedbapi.git]
/
proto
/
source
/
base.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";
package protomsg;
// struct for sdk
message Point{
int32 x = 1;
int32 y = 2;
}
message Rect{
int32 left = 1;
int32 top = 2;
int32 right = 3;
int32 bottom = 4;
}