using System; using System.Collections.Generic; namespace EC.Entity.Video { public class MsVideoRecorder { public MsVideoRecorder() { } /// /// 主键 /// public string Id { get; set; } /// /// 所属部门 /// public string SysOrgCode { get; set; } /// /// 设备名称 /// public string DeviceName { get; set; } /// /// 设备类型 /// public int DeviceType { get; set; } /// /// 设备编号 /// public string DeviceNum { get; set; } /// /// 设备地址 /// public string DeviceAddress { get; set; } /// /// 用户姓名 /// public string UserName { get; set; } /// /// 用户密码 /// public string UserPassword { get; set; } /// /// 是否启用 /// public int IsEnable { get; set; } /// /// 安装位置 /// public string FixedPosition { get; set; } /// /// /// public List MsCameraSettingList { get; set; } /// /// 创建人 /// public string CreateBy { get; set; } /// /// 创建日期 /// public DateTime? CreateTime { get; set; } /// /// 更新人 /// public string UpdateBy { get; set; } /// /// 更新日期 /// public DateTime? UpdateTime { get; set; } } }