1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| syntax = "proto3";
|
| import "base.proto";
|
| package protomsg;
|
| message FaceTempInfo {
| float alarmVal = 1;
| float setVal = 2;
| string faceId = 3;
| Rect facePos = 4;
| }
|
| message AlarmInfo {
| string type = 1;
| bytes data = 2;
| }
|
| message AlarmMessage {
| string devId = 1;
| string time = 2;
| repeated AlarmInfo alarmInfo = 3;
| bytes data = 4;
| }
|
|