20230201_145_upperpc/InSituLaboratory.Entities/cavityoutputcurrent.cs
2024-03-13 08:46:26 +08:00

112 lines
2.8 KiB
C#

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