107 lines
2.8 KiB
C#
107 lines
2.8 KiB
C#
|
|
using Prism.Mvvm;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace InSituLaboratory.Models
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前设备----工作/故障
|
|||
|
|
/// </summary>
|
|||
|
|
public class CurrentEquipmentModel : BindableBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 采样时间
|
|||
|
|
/// </summary>
|
|||
|
|
private DateTime? _samplingTime;
|
|||
|
|
public DateTime? SamplingTime
|
|||
|
|
{
|
|||
|
|
get { return _samplingTime; }
|
|||
|
|
set { SetProperty(ref _samplingTime, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 创建时间
|
|||
|
|
/// </summary>
|
|||
|
|
private DateTime? _createTime;
|
|||
|
|
public DateTime? CreateTime
|
|||
|
|
{
|
|||
|
|
get { return _createTime; }
|
|||
|
|
set { SetProperty(ref _createTime, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// MEMS色谱仪
|
|||
|
|
/// </summary>
|
|||
|
|
private string? _chromatograph_MEMS;
|
|||
|
|
public string? Chromatograph_MEMS
|
|||
|
|
{
|
|||
|
|
get { return _chromatograph_MEMS; }
|
|||
|
|
set { SetProperty(ref _chromatograph_MEMS, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// MEMS质谱仪
|
|||
|
|
/// </summary>
|
|||
|
|
private string? _massSpectrometer_MEMS;
|
|||
|
|
public string? MassSpectrometer_MEMS
|
|||
|
|
{
|
|||
|
|
get { return _massSpectrometer_MEMS; }
|
|||
|
|
set { SetProperty(ref _massSpectrometer_MEMS, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 色质联用仪
|
|||
|
|
/// </summary>
|
|||
|
|
private string? _colorMassSpectrometer;
|
|||
|
|
public string? ColorMassSpectrometer
|
|||
|
|
{
|
|||
|
|
get { return _colorMassSpectrometer; }
|
|||
|
|
set { SetProperty(ref _colorMassSpectrometer, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 甲烷同位素分析仪
|
|||
|
|
/// </summary>
|
|||
|
|
private string? _cH4Analyzer;
|
|||
|
|
public string? CH4Analyzer
|
|||
|
|
{
|
|||
|
|
get { return _cH4Analyzer; }
|
|||
|
|
set { SetProperty(ref _cH4Analyzer, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 二氧化碳同位素分析仪
|
|||
|
|
/// </summary>
|
|||
|
|
private string? _cO2Analyzer;
|
|||
|
|
public string? CO2Analyzer
|
|||
|
|
{
|
|||
|
|
get { return _cO2Analyzer; }
|
|||
|
|
set { SetProperty(ref _cO2Analyzer, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 颗粒物分析仪
|
|||
|
|
/// </summary>
|
|||
|
|
private string? _particleAnalyzer;
|
|||
|
|
public string? ParticleAnalyzer
|
|||
|
|
{
|
|||
|
|
get { return _particleAnalyzer; }
|
|||
|
|
set { SetProperty(ref _particleAnalyzer, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 测序仪
|
|||
|
|
/// </summary>
|
|||
|
|
private string? _sequencer;
|
|||
|
|
public string? Sequencer
|
|||
|
|
{
|
|||
|
|
get { return _sequencer; }
|
|||
|
|
set { SetProperty(ref _sequencer, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|