liuxiaolong
2021-02-03 cb12947ffbd30cea09bbe253f0e28b0e2222f952
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package bhomeclient
 
const (
    Default_Layer = -9999 //摄像机添加进来的默认楼层
    TYPE_LOCAL_CAMERA = 0 //本地摄像机
    TYPE_GB28181_CAMERA = 1 //国标摄像机
 
    TYPE_RUNTYPE_VIDEO = -1 //单纯的监控,不做分析
    TYPE_RUNTYPE_POLL = 0 //轮询做任务
    TYPE_RUNTYPE_REALTIME = 1 //实时做任务
 
    Camera_Status_NoRule = 0  //未配规则
    Camera_Status_Wait = 1  //等待处理
    Camera_Status_Doing = 2  //处理中
    Camera_Status_Other = -1 //其他情况
 
    Id_Stack_Pre = "stack_"
    Stack_Status_NoRule = 0  //未配规则
    Stack_Status_Wait = 1  //等待处理
    Stack_Status_Doing = 2  //处理中
    Stack_Status_Done = 9  //处理完成
 
 
    File_Type_Img = 0
    File_Type_Video = 1
    File_Type_Audio = 2
    File_Img_Id_Pre = "img_"
    File_Video_Id_Pre = "video_"
    File_Audio_Id_Pre = "audio_"
    File_Other_Id_Pre = "other_"
    File_Status_Delete = -1              //删除状态
    File_Status_Pause = 0               //暂停状态
    File_Status_Wait = 1                   //等待处理
    File_Status_Doing = 2                //处理中
    File_Status_Complete = 9            //已完成
    File_Status_DealErr = -2            //处理失败
 
 
    Proc_Api_Gateway = "api-gateway"
    Proc_Camera_Service = "camera-service"
    Proc_App_Center = "appcenter-service"
    Proc_Chanmanage_Service = "chanmanage-service"
    Proc_CompTable_Service = "compTable-service"
    Proc_Gb28181_Service = "gb28181-service"
    Proc_Push_Service = "push-service"   //
    Proc_Realtime_Service = "realtime-service" //实时监控
    Proc_Scene_Service = "scene-service"   //场景配置进程
    Proc_Search_Service = "search-service" //查询检索进程
    Proc_Stack_Service = "stack-service"   //数据栈进程
    Proc_System_Service = "system-service" //系统服务
)