package mc
|
|
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" //系统服务
|
)
|