From e2c32868dc935c0f9773b51ed88de5e94b2ea874 Mon Sep 17 00:00:00 2001 From: zhangzengfei <zhangzengfei@smartai.com> Date: 星期三, 08 五月 2024 14:16:58 +0800 Subject: [PATCH] 添加删除类型 --- fileanalysis.proto | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 45 insertions(+), 0 deletions(-) diff --git a/fileanalysis.proto b/fileanalysis.proto index e69de29..fb6c050 100644 --- a/fileanalysis.proto +++ b/fileanalysis.proto @@ -0,0 +1,45 @@ +syntax = "proto3"; + +package protomsg; + +message FileAnalysis { + string id =1; + string name =2; + string path =3; + int32 type =4; + int32 sort =5; + string alias =6; + string snapshot_url =7; + string duration =8; + bool is_running =9; + int32 progress =10; + int32 ruleType =11; + int32 status =12; + string createTime =13; + string updateTime =14; + string identifier =15; + string stack_id =16; + int64 size =17; +} + +message FileAnalysisSetting { + bool videoEnable =1; + string fileDirectory =2; + int32 videoChannelCount =3; + int32 imgChannelCount =4; + int32 audioChannelCount =5; +} + +message FileStack { + string id = 1; + string name = 2; + int32 type = 3; + bool enable = 4; + bool isAutoDelFile = 5; + int32 status = 6; + string createTime = 7; + string updateTime = 8; + int32 sort = 9; + int32 resolution_width = 21; //鍒嗚鲸鐜囧 + int32 resolution_height = 22; //鍒嗚鲸鐜囬珮 +} \ No newline at end of file -- Gitblit v1.8.0