17 lines
331 B
Protocol Buffer
17 lines
331 B
Protocol Buffer
// 对讲呼叫请求
|
||
syntax = "proto3";
|
||
package main;
|
||
option go_package = "./spb/talk";
|
||
|
||
message TalkReq {
|
||
// 呼叫方类型:门锁、APP
|
||
enum CallerTypeE {
|
||
Lock = 0;
|
||
App = 1;
|
||
}
|
||
CallerTypeE CallerType = 1;
|
||
|
||
// 呼叫方名称,可能是用户名或者锁名称
|
||
string CallerName = 2;
|
||
}
|