From dc8ca60fc53199251100883b4370de52a6534463 Mon Sep 17 00:00:00 2001
From: panlei <2799247126@qq.com>
Date: 星期四, 22 八月 2019 14:01:53 +0800
Subject: [PATCH] soinfo id change to string

---
 es.proto |   55 ++++++++++++++++++++++++++++++++++++++++++-------------
 1 files changed, 42 insertions(+), 13 deletions(-)

diff --git a/es.proto b/es.proto
index 71d0db8..0e8e580 100644
--- a/es.proto
+++ b/es.proto
@@ -2,20 +2,49 @@
 
 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 Esinfo{
+    string id           =1;
+    string tableid      =2;
+    string faceFeature  =3;
+    float  compareScore =4;
+    int32  enable       =5;
 }
 
+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;
+}
 
+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;
+}
 

--
Gitblit v1.8.0