using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InSituLaboratory.Entities { /// /// 腔体输出电流表 /// public class cavityoutputcurrent: BaseCavity { /// /// 数据编号 /// [Key] public int DataIdNum { get; set; } /// /// 色质联用输出电流 /// public float CurrentOfGC_MS { get; set; } /// /// 备用串口1输出电流 /// public float CurrentOfSecondComPort1 { get; set; } /// /// 备用串口2输出电流 /// public float CurrentOfSecondComPort2 { get; set; } /// /// 光通讯机输出电流 /// public float CurrentOfOpticalComm { get; set; } /// /// ADCP输出电流 /// public float CurrentOfADCP { get; set; } /// /// CTD输出电流 /// public float CurrentOfCTD { get; set; } /// /// 气相色谱仪输出电流 /// public float CurrentOfDC_ECD { get; set; } /// /// 甲烷同位素分析仪电流 /// public float CurrentOfCH4 { get; set; } /// /// 二氧化碳同位素分析仪电流 /// public float CurrentOfCo2 { get; set; } /// /// 备用网口输出电流 /// public float CurrentOfSNetPort { get; set; } /// /// 串口服务器输出电流 /// public float CurrentOfSerialServer { get; set; } /// /// 工作机输出电流 /// public float CurrentOfIPC { get; set; } /// /// 显微拉曼分析仪输出电流 /// public float CurrentOfMicroRaman { get; set; } /// /// 质谱仪输出电流 /// public float CurrentOfMS { get; set; } /// /// 声学定位输出电流 /// public float CurrentOfALD { get; set; } /// /// 摄像1的输出电流 /// public float CurrrentOfVDataIdNumeo1 { get; set; } /// /// 摄像2的输出电流 /// public float CurrentOfVDataIdNumeo2 { get; set; } /// /// 电交换机2输出电流 /// public float CurrentOfSwichBoard { get; set; } } }