using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Wpf.Model
{
public class PointsInfo
{
public int ID { get; set; }
///
/// 一体机A转速
///
public string ASpeed { get; set; }
///
/// 一体机A电流
///
public string ACurrent { get; set; }
///
/// 一体机切刀A转速
///
public string AlicerASpeed { get; set; }
///
/// 一体机切刀A电流
///
public string AlicerACurrent { get; set; }
///
/// 一体机B转速
///
public string BSpeed { get; set; }
///
/// 一体机B电流
///
public string BCurrent { get; set; }
///
/// 一体机切刀B转速
///
public string AlicerBSpeed { get; set; }
///
/// 一体机切刀B电流
///
public string AlicerBCurrent { get; set; }
///
/// 一体机A机头压力
///
public string APressure { get; set; }
///
/// 一体机A机头温度
///
public string ATemperature { get; set; }
///
/// 一体机B机头压力
///
public string BPressure { get; set; }
///
/// 一体机B机头温度
///
public string BTemperature { get; set; }
///
/// 一体机A转速高设定
///
public string ASpeedHighSet { get; set; }
///
/// 一体机A转速低设定
///
public string ASpeedLowSet { get; set; }
///
/// 一体机A电流高设定
///
public string ACurrentHighSet { get; set; }
///
/// 一体机A电流低设定
///
public string ACurrentLowSet { get; set; }
///
/// 一体机切刀A转速高设定
///
public string AlicerSlicerASpeedHighSet { get; set; }
///
/// 一体机切刀A转速低设定
///
public string AlicerSlicerASpeedLowSet { get; set; }
///
/// 一体机切刀A电流高设定
///
public string AlicerSlicerACurrentHighSet { get; set; }
///
/// 一体机切刀A电流低设定
///
public string AlicerSlicerACurrentLowSet { get; set; }
///
/// 一体机B转速高设定
///
public string AlicerBSpeedHighSet { get; set; }
///
/// 一体机B转速低设定
///
public string AlicerBSpeedLowSet { get; set; }
///
/// 一体机B电流高设定
///
public string AlicerBCurrentHighSet { get; set; }
///
/// 一体机B电流低设定
///
public string AlicerBCurrentLowSet { get; set; }
///
/// 一体机切刀B转速高设定
///
public string AlicerSlicerBSpeedHighSet { get; set; }
///
/// 一体机切刀B转速低设定
///
public string AlicerSlicerBSpeedLowSet { get; set; }
///
/// 一体机切刀B电流高设定
///
public string AlicerSlicerBCurrentHighSet { get; set; }
///
/// 一体机切刀B电流低设定
///
public string AlicerSlicerBCurrentLowSet { get; set; }
///
/// 一体机A机头压力高设定
///
public string AlicerAPressureHighSet { get; set; }
///
/// 一体机A机头压力低设定
///
public string AlicerAPressureLowSet { get; set; }
///
/// 一体机A机头温度高设定
///
public string AlicerATemperatureHighSet { get; set; }
///
/// 一体机A机头温度低设定
///
public string AlicerATemperatureLowSet { get; set; }
///
/// 一体机B机头压力高设定
///
public string AlicerBPressureHighSet { get; set; }
///
/// 一体机B机头压力低设定
///
public string AlicerBPressureLowSet { get; set; }
///
/// 一体机B机头温度高设定
///
public string AlicerBTemperatureHighSet { get; set; }
///
/// 一体机B机头温度低设定
///
public string AlicerBTemperatureLowSet { get; set; }
///
/// 一体机A运行
///
public string AlicerARun { get; set; }
///
/// 一体机A故障
///
public string AlicerAHitch { get; set; }
///
/// 一体机切刀A运行
///
public string AlicerSlicerARun { get; set; }
///
/// 一体机切刀A故障
///
public string AlicerSlicerAHitch { get; set; }
///
/// 一体机油泵A运行
///
public string AlicerOilPumpARun { get; set; }
///
/// 一体机油泵A故障
///
public string AlicerOilPumpAHitch { get; set; }
///
/// 一体机B运行
///
public string AlicerBRun { get; set; }
///
/// 一体机B故障
///
public string AlicerBHitch { get; set; }
///
/// 一体机切刀B运行
///
public string AlicerSlicerBRun { get; set; }
///
/// 一体机切刀B故障
///
public string AlicerSlicerBHitch { get; set; }
}
}