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