1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| syntax = "proto3";
|
| package protomsg;
|
| message Videopersons {
| string id =1;
| string cameraId =2;
| string cameraAddr =3;
| string picDate =4;
| string picMaxUrl =5;
| string taskId =6;
| string taskName =7;
| string sdkName =8;
| string content =9;
| string likeDate =10;
| string detectScore =11;
| string sex =12;
| int32 age =13;
| string ageDescription =14;
| string race =15;
| string smileLevel =16;
| string beautyLevel =17;
| repeated string picSmUrl =18;
| string videoUrl =19;
| string analyServerId =20;
| string analyServerName =21;
| string analyServerIp =22;
| string clusterId =23;
| string isAlarm =24;
| string isAckAlarm =25;
| int32 isCollect =26;
| int32 isDelete =27;
| repeated AlarmRules alarmRules =28;
| repeated BaseInfo baseInfo =29;
| }
|
| message AlarmRules {
| string groupId =1;
| string alarmLevel =2;
| string ruleText =3;
| bool defenceState =4;
| }
|
| message BaseInfo {
| string tableId =1;
| string tableName =2;
| float compareScore =3;
| string personId =4;
| string personName =5;
| string personPicUrl =6;
| string phoneNum =7;
| string sex =8;
| string idCard =9;
| string monitorLevel =10;
| string content =11;
| int32 bwType =12;
| }
|
|