using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InSituLaboratory.Entities { /// /// 与下位机通信类 --- 传感器 /// [Table("SysSensorModel")] public class SysSensorModels : NotifyBase { public int Id { get; set; } private DateTime? _createTime; /// /// 创建时间 /// public DateTime? CreateTime { get { return _createTime; } set { _createTime = value; DoNotify(); } } private string _inComputer; /// /// 工控机 /// public string InComputer { get { return _inComputer; } set { _inComputer = value; DoNotify(); } } private string _cMSpectrometry; /// /// 色质联用 /// public string CMSpectrometry { get { return _cMSpectrometry; } set { _cMSpectrometry = value; DoNotify(); } } private string _light1; /// /// 灯1 /// public string Light1 { get { return _light1; } set { _light1 = value; DoNotify(); } } private string _light2; /// /// 灯2 /// public string Light2 { get { return _light2; } set { _light2 = value; DoNotify(); } } private string _lightMachine; /// /// 光通讯机 /// public string LightMachine { get { return _lightMachine; } set { _lightMachine = value; DoNotify(); } } private string _adcp; /// /// ADCP /// public string ADCP { get { return _adcp; } set { _adcp = value; DoNotify(); } } private string _ctd; /// /// CTD /// public string CTD { get { return _ctd; } set { _ctd = value; DoNotify(); } } private string _SP; /// /// 气相色谱仪 /// public string SP { get { return _SP; } set { _SP = value; DoNotify(); } } private string _CH4; /// /// 甲烷传感器 /// public string CH4 { get { return _CH4; } set { _CH4 = value; DoNotify(); } } private string _CO2; /// /// 二氧化碳同位素分析仪 /// public string CO2 { get { return _CO2; } set { _CO2 = value; DoNotify(); } } private string netEquipment; /// /// 备用网口设备 /// public string NetEquipment { get { return netEquipment; } set { netEquipment = value; DoNotify(); } } private string _serialPortServer; /// /// 串口服务器 /// public string SerialPortServer { get { return _serialPortServer; } set { _serialPortServer = value; DoNotify(); } } private string _ramanAnalyzer; /// /// 显微拉曼分析仪 /// public string RamanAnalyzer { get { return _ramanAnalyzer; } set { _ramanAnalyzer = value; DoNotify(); } } private string zp; /// /// 质谱仪 /// public string ZP { get { return zp; } set { zp = value; DoNotify(); } } private string _acousticPositioning; /// /// 声学定位 /// public string AcousticPositioning { get { return _acousticPositioning; } set { _acousticPositioning = value; DoNotify(); } } private string _Camera1; /// /// 摄像1 /// public string Camera1 { get { return _Camera1; } set { _Camera1 = value; DoNotify(); } } private string _Camera2; /// /// 摄像2 /// public string Camera2 { get { return _Camera2; } set { _Camera2 = value; DoNotify(); } } private string _electricSwitch2; /// /// 电交换机2 /// public string ElectricSwitch2 { get { return _electricSwitch2; } set { _electricSwitch2 = value; DoNotify(); } } } }