using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Core.StlMes.Client.LgResMgt.Mcms { public class MeterBaseVideoinfo { /// /// 计量点id /// //[AttributeID("pointid")] public string pointid { get; set; } /// /// 硬盘录像机IP /// public string videoip { get; set; } /// /// 安装位置1 /// public string position1 { get; set; } /// /// 计量点类型 /// public string pointtype { get; set; } /// /// 备注信息 /// public string remark { get; set; } /// /// 计量点 /// public string pointname { get; set; } /// /// 安装位置2 /// public string position2 { get; set; } /// /// 安装位置3 /// public string position3 { get; set; } /// /// 安装位置4 /// public string position4 { get; set; } /// /// 安装位置5 /// public string position5 { get; set; } /// /// 安装位置6 /// public string position6 { get; set; } /// /// 安装位置7 /// public string position7 { get; set; } /// /// 安装位置8 /// public string position8 { get; set; } /// /// 硬盘录像机端口 /// public string vdoPort { get; set; } /// /// 硬盘录像机用户 /// public string vdoUser { get; set; } /// /// 硬盘录像机密码 /// public string vdoPwd { get; set; } /// /// 硬盘录像机类型:0=海康、1=大华 /// public string vdoType { get; set; } /// /// 主流媒体服务器IP /// public string svr1VdoIp { get; set; } /// /// 备流媒体服务器IP /// public string svr2VdoIp { get; set; } /// /// 语音文件名 /// public string voicename { get; set; } /// /// 硬盘录像机型号(SDK318或SDK330) /// public string videotype { get; set; } /// /// 1号图像码率 0主码 3辅码1 4辅码2 /// public string p1Rate { get; set; } /// /// 2号图像码率 0主码 3辅码1 4辅码2 /// public string p2Rate { get; set; } /// /// 3号图像码率 0主码 3辅码1 4辅码2 /// public string p3Rate { get; set; } /// /// 4号图像码率 0主码 3辅码1 4辅码2 /// public string p4Rate { get; set; } /// /// 5号图像码率 0主码 3辅码1 4辅码2 /// public string p5Rate { get; set; } /// /// 6号图像码率 0主码 3辅码1 4辅码2 /// public string p6Rate { get; set; } /// /// 7号图像码率 0主码 3辅码1 4辅码2 /// public string p7Rate { get; set; } /// /// 8号图像码率 0主码 3辅码1 4辅码2 /// public string p8Rate { get; set; } /// /// 视频截图数量(跟计量员操作日志表查询有关联) /// public string imagecount { get; set; } /// /// 0视频流摄像头截图,1视频流硬盘录像机截图,2非视频流硬盘录像机截图,3非视频流摄像头截图 /// public string captureimageflag { get; set; } /// /// 是否有两个摄像头(0 否 1是) /// public string isSecond { get; set; } } }