using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InSituLaboratory.Entities.SqlSugar { /// /// 与下位机通信类 --- 传感器 /// [SugarTable("SysSensorModel")] public class SysSensorModelSqlSugar { [SugarColumn(ColumnName = "Id", IsIdentity = true, IsPrimaryKey = true)] public int Id { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true)] public DateTime? CreateTime { get; set; } /// /// 工控机 /// [SugarColumn(IsNullable = true)] public string? InComputer { get; set; } /// /// 色质联用 /// [SugarColumn(IsNullable = true)] public string? CMSpectrometry { get; set; } /// /// 备用串口1 /// [SugarColumn(IsNullable = true)] public string? Light1 { get; set; } /// /// 备用串口2 /// [SugarColumn(IsNullable = true)] public string? Light2 { get; set; } /// /// 光通讯机 /// [SugarColumn(IsNullable = true)] public string? LightMachine { get; set; } /// /// ADCP /// [SugarColumn(IsNullable = true)] public string? ADCP { get; set; } /// /// CTD /// [SugarColumn(IsNullable = true)] public string? CTD { get; set; } /// /// 气相色谱仪 /// [SugarColumn(IsNullable = true)] public string? SP { get; set; } /// /// 甲烷传感器 /// [SugarColumn(IsNullable = true)] public string? CH4 { get; set; } /// /// 二氧化碳同位素分析仪 /// [SugarColumn(IsNullable = true)] public string? CO2 { get; set; } /// /// 备用网口设备 /// [SugarColumn(IsNullable = true)] public string? NetEquipment { get; set; } /// /// ICL /// [SugarColumn(IsNullable = true)] public string? SerialPortServer { get; set; } /// /// 显微拉曼分析仪 /// [SugarColumn(IsNullable = true)] public string? RamanAnalyzer { get; set; } /// ///质谱仪 /// [SugarColumn(IsNullable = true)] public string? ZP { get; set; } /// /// 声学定位 /// [SugarColumn(IsNullable = true)] public string? AcousticPositioning { get; set; } /// /// 摄像1 /// [SugarColumn(IsNullable = true)] public string? Camera1 { get; set; } /// /// 摄像2 /// [SugarColumn(IsNullable = true)] public string? Camera2 { get; set; } /// /// 电交换机2 /// [SugarColumn(IsNullable = true)] public string? ElectricSwitch2 { get; set; } } }