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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
| syntax = "proto3";
|
| import "aiocean.proto";
|
| package protomsg;
|
| message Esinfo{
| string id =1;
| string tableid =2;
| string faceFeature =3;
| float compareScore =4;
| int32 enable =5;
| string analyServerId =6;
|
| string carNo =7;//车牌号
| }
|
| message MultiFeaCache {
| Esinfo esInfo = 1;
| string attachFeature = 2;
| string cameraId =3;
| repeated LinkEsInfo linkEsInfo = 4;
| TargetLocation targetLocation =5;
| }
|
| message LinkEsInfo {
| string cameraId =1;
| string feature =2;//人体特征
| string attachFeature = 3;//辅助特征,有的话就是人脸特征
| TargetLocation targetLocation =4;
| }
|
| message Dbperson{
| string id =1;
| string tableId =2;
| string faceFeature =3;
| string personPicUrl =4;
| string personName =5;
| string age =6;
| string sex =7;
| string idCard =8;
| string picDesc =9;
| string phoneNum =10;
| string createTime =11;
| string updateTime =12;
| string createBy =13;
| int32 isDelete =14;
| string monitorLevel =15;
| int32 enable =16;
| string reserved =17;
|
| string carNo =18;
| string carPicUrls =19;
| int32 carType =20;
| int32 carBrand =21;
| int32 carColor =22;
| }
|
| message Dbtable {
| string id =1;
| string tableName =2;
| string tableDesc =3;
| string tableType =4;
| string bwType =5;
| string startTime =6;
| string endTime =7;
| string createTime =8;
| string updateTime =9;
| string createBy =10;
| int32 isDelete =11;
| string isForever =12;
| int32 enable =13;
| string isSync =14;
| string analyServerId=15;
| }
|
|