554325746@qq.com
2019-06-26 f959aecb5d1bb681269d77b331db0ad5895c5d78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
syntax = "proto3";
 
package protomsg;
 
message Baseinfo{
    string faceFeature = 1;
    string personId    = 2;
    string tableId     = 3;
    string tableName   =4;
    float  compareScore= 5;
    string personName =6;
    string personPicUrl =7;
    string phoneNum =8;
    string sex =9;
    string idcard = 10;
   string monitorLevel  = 11;
    string content = 12;
}
 
message Binfos{
    repeated   Baseinfo infos  = 1;
}