113 lines
2.9 KiB
C#
113 lines
2.9 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 cavityoutputstatus : BaseCavity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据编号
|
|||
|
|
/// </summary>
|
|||
|
|
[Key]
|
|||
|
|
public int DataIdNum { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 色质联用输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfGC_MS { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用串口1输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfSecondComPort1 { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用串口2输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfSecondComPort2 { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 光通讯机输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfOpticalComm { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// ADCP输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfADCP { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// CTD输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfCTD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 气相色谱仪输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfDC_ECD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 甲烷同位素分析仪状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfCH4 { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 二氧化碳同位素分析仪状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfCo2 { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用网口状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfSNetPort { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 串口服务器状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfSerialServer { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工作机输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfIPC { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 显微拉曼分析仪输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfMicroRaman { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 质谱仪输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfMS { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 声学定位输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfALD { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 摄像1的输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfVDataIdNumeo1 { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 摄像2的输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfVDataIdNumeo2 { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 电交换机2输出状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string? OutputStateOfSwichBoard { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|