1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| 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;
| int32 channelCount =3;
| }
|
|