From 2a0b1925ba894b4116e07c1373d3c38eb6d3ba01 Mon Sep 17 00:00:00 2001 From: liuxiaolong <736321739@qq.com> Date: 星期四, 28 十一月 2019 17:38:09 +0800 Subject: [PATCH] add fileanalysis.proto --- fileanalysis.proto | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/fileanalysis.proto b/fileanalysis.proto index e69de29..d51fd73 100644 --- a/fileanalysis.proto +++ b/fileanalysis.proto @@ -0,0 +1,22 @@ +syntax = "proto3"; + +package protomsg; + +message FileAnalysis { + string id =1; + string name =2; + string path =3; + int32 type =4; + int32 sort =5; + bool is_running =6; + int32 progress =7; + int32 ruleType =8; + int32 status =9; + string createTime =10; + string updateTime =11; +} + +message FileAnalysisSetting { + bool videoFileEnable =1; + string videoDirectory =2; +} \ No newline at end of file -- Gitblit v1.8.0