20230201_145_upperpc/InSituLaboratory.Models/SysSensorModels.cs

212 lines
5.0 KiB
C#

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