using Admin.Core.IService; using Admin.Core.Tasks; using CommunityToolkit.Mvvm.ComponentModel; using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Aucma.Core.BoxFoam.Models { public partial class FoamMachinesModel { #region 料位 /// /// POL料位 /// public int Syst1_POLMaterialLevel { get; set; } /// /// ISO料位 /// public int Syst1_ISOMaterialLevel { get; set; } #endregion #region 温度 /// /// Plo温度 /// public string Syst1_PolTmperature { get; set; } /// /// ISO温度 /// public string Syst1_IsoTmperature { get; set; } #endregion #region 压力 /// /// Pol压力 /// public string Syst1_PolPressure { get; set; } /// /// Iso压力 /// public string Syst1_IsoPressure { get; set; } #endregion #region 温度 /// /// Iso温度 /// public string Syst1_PolTemperature { get; set; } /// /// Iso温度 /// public string Syst1_IsoTemperature { get; set; } #endregion #region 输出压力 /// /// POL输出压力 /// public string Syst1_PolOutputPressure { get; set; } /// /// ISO输出压力 /// public string Syst1_IsoOutputPressure { get; set; } #endregion #region 流量 /// /// POL流量 /// public string Syst1_PolFlow { get; set; } /// /// ISO流量 /// public string Syst1_IsoFlow { get; set; } #endregion #region 原料用量 /// /// POL流量 /// public string Syst1_PolMaterialLeve { get; set; } /// /// ISO流量 /// public string Syst1_IsoMaterialLeve { get; set; } #endregion #region 液压 /// /// 液压压力 /// public string Syst1_Pressure { get; set; } /// /// 液压 /// public string Syst1_Temperature { get; set; } #endregion #region 结束信号 /// /// A1结束信号 /// public string Syst1_A1_End { get; set; } /// /// 结束信号 /// public string Syst1_B1_End { get; set; } #endregion #region A1-B1 POL注料压力 /// /// A1 POL注料压力 /// public string Syst1_A1_POLPressure { get; set; } /// /// B1 POL注料压力 /// public string Syst1_B1_POLPressure { get; set; } #endregion #region A1-B1 POL注料温度 /// /// A1 POL注料温度 /// public string Syst1_A1_POLTemperature { get; set; } /// /// B1 POL注料温度 /// public string Syst1_B1_POLTemperature { get; set; } #endregion #region A1-B1 ISO注料压力 /// /// A1 ISO注料压力 /// public string Syst1_A1_ISOPressure { get; set; } /// /// B1 ISO注料压力 /// public string Syst1_B1_ISOPressure { get; set; } #endregion #region A1-B1 ISO注料压力 /// /// A1 ISO注料压力 /// public string Syst1_A1_ISOTemperature { get; set; } /// /// B1 ISO注料压力 /// public string Syst1_B1_ISOTemperature { get; set; } #endregion #region 系统2料位 /// /// POL料位 /// public int Syst2_POLMaterialLevel { get; set; } /// /// ISO料位 /// public int Syst2_ISOMaterialLevel { get; set; } #endregion #region 系统2温度 /// /// Plo温度 /// public string Syst2_PolTmperature { get; set; } /// /// ISO温度 /// public string Syst2_IsoTmperature { get; set; } #endregion #region 系统2压力 /// /// Pol压力 /// public string Syst2_PolPressure { get; set; } /// /// Iso压力 /// public string Syst2_IsoPressure { get; set; } #endregion #region 系统2温度 /// /// Iso温度 /// public string Syst2_PolTemperature { get; set; } /// /// Iso温度 /// public string Syst2_IsoTemperature { get; set; } #endregion #region 系统2输出压力 /// /// POL输出压力 /// public string Syst2_PolOutputPressure { get; set; } /// /// ISO输出压力 /// public string Syst2_IsoOutputPressure { get; set; } #endregion #region 系统2流量 /// /// POL流量 /// public string Syst2_PolFlow { get; set; } /// /// ISO流量 /// public string Syst2_IsoFlow { get; set; } #endregion #region 系统2原料用量 /// /// POL流量 /// public string Syst2_PolMaterialLeve { get; set; } /// /// ISO流量 /// public string Syst2_IsoMaterialLeve { get; set; } #endregion #region 系统2液压 /// /// 液压压力 /// public string Syst2_Pressure { get; set; } /// /// 液压 /// public string Syst2_Temperature { get; set; } #endregion #region 系统2结束信号 /// /// A1结束信号 /// public string Syst2_A1_End { get; set; } /// /// 结束信号 /// public string Syst2_B1_End { get; set; } #endregion #region 系统2 A1-B1 POL注料压力 /// /// A1 POL注料压力 /// public string Syst2_A1_POLPressure { get; set; } /// /// B1 POL注料压力 /// public string Syst2_B1_POLPressure { get; set; } #endregion #region 系统2 A1-B1 POL注料温度 /// /// A1 POL注料温度 /// public string Syst2_A1_POLTemperature { get; set; } /// /// B1 POL注料温度 /// public string Syst2_B1_POLTemperature { get; set; } #endregion #region 系统2 A1-B1 ISO注料压力 /// /// A1 ISO注料压力 /// public string Syst2_A1_ISOPressure { get; set; } /// /// B1 ISO注料压力 /// public string Syst2_B1_ISOPressure { get; set; } #endregion #region 系统2 A1-B1 ISO注料压力 /// /// A1 ISO注料压力 /// public string Syst2_A1_ISOTemperature { get; set; } /// /// B1 ISO注料压力 /// public string Syst2_B1_ISOTemperature { get; set; } #endregion } }