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
---
videoperson.proto | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 58 insertions(+), 0 deletions(-)
diff --git a/videoperson.proto b/videoperson.proto
index e69de29..c12852f 100644
--- a/videoperson.proto
+++ b/videoperson.proto
@@ -0,0 +1,58 @@
+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;
+}
+
--
Gitblit v1.8.0