20230201_145_upperpc/InSituLaboratory.Entities/SysData/cavityoutputcurrent.cs

112 lines
2.9 KiB
C#
Raw Permalink Normal View History

2024-03-13 00:46:26 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-05-08 10:01:39 +00:00
namespace InSituLaboratory.Entities.SysData
2024-03-13 00:46:26 +00:00
{
/// <summary>
/// 腔体输出电流表
/// </summary>
2024-05-08 10:01:39 +00:00
public class cavityoutputcurrent : BaseCavity
2024-03-13 00:46:26 +00:00
{
/// <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; }
}
}