From d6490cec26caa8c61e0cad54024c93a49d92ccef Mon Sep 17 00:00:00 2001
From: liuxiaolong <liuxiaolong@aiotlink.com>
Date: 星期二, 02 二月 2021 16:57:02 +0800
Subject: [PATCH] Camera结构添加status

---
 es.proto |   56 +++++++++++++++++++++++++++++++-------------------------
 1 files changed, 31 insertions(+), 25 deletions(-)

diff --git a/es.proto b/es.proto
index e3fe45e..a40f957 100644
--- a/es.proto
+++ b/es.proto
@@ -1,33 +1,33 @@
 syntax = "proto3";
 
+import "aiocean.proto";
+
 package protomsg;
-
-message Baseinfo{
-    string faceFeature = 1;
-    string personId    = 2;
-    string tableId     = 3;
-    string tableName   =4;
-    string personName =6;
-    string personPicUrl =7;
-    string phoneNum =8;
-    string sex =9;
-    string idCard = 10;
-    string monitorLevel  = 11;
-    string content = 12;
-    string picDesc = 13;
-    float compareScore =14;
-
-}
-
-message Binfos{
-    repeated   Baseinfo infos  = 1;
-}
 
 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{
@@ -44,10 +44,16 @@
     string createTime      =11;
     string updateTime      =12;
     string createBy        =13;
-    string isDelete         =14;
+    int32  isDelete         =14;
     string monitorLevel    =15;
-    string enable          =16;
+    int32  enable          =16;
     string reserved        =17;
+
+    string carNo           =18;
+    string carPicUrls      =19;
+    int32 carType          =20;
+    int32   carBrand       =21;
+    int32 carColor         =22;
 }
 
 message Dbtable {
@@ -61,9 +67,9 @@
     string createTime   =8;
     string updateTime   =9;
     string createBy     =10;
-    string isDelete     =11;
+    int32  isDelete     =11;
     string isForever    =12;
-    string enable       =13;
+    int32  enable       =13;
     string isSync       =14;
     string analyServerId=15;
 }

--
Gitblit v1.8.0