V1.2
This commit is contained in:
232
CapMachine.Wpf/Dtos/ProStepDto.cs
Normal file
232
CapMachine.Wpf/Dtos/ProStepDto.cs
Normal file
@@ -0,0 +1,232 @@
|
||||
using CapMachine.Wpf.Dtos;
|
||||
using Prism.Mvvm;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 程序步骤的模型
|
||||
/// </summary>
|
||||
public class ProStepDto : BindableBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 程序步骤序号
|
||||
/// </summary>
|
||||
public int StepNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 程序循环次数
|
||||
/// </summary>
|
||||
public int StepRepeat { get; set; }
|
||||
|
||||
private CycleInfoDto? _SpeedCycle=new CycleInfoDto();
|
||||
/// <summary>
|
||||
/// 速度循环信息
|
||||
/// </summary>
|
||||
public CycleInfoDto? SpeedCycle
|
||||
{
|
||||
get { return _SpeedCycle; }
|
||||
set { _SpeedCycle = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _SpeedInfo;
|
||||
/// <summary>
|
||||
/// 压缩机转速 信息
|
||||
/// </summary>
|
||||
public string? SpeedInfo
|
||||
{
|
||||
get { return _SpeedInfo; }
|
||||
set { _SpeedInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterCond1TempInfo;
|
||||
/// <summary>
|
||||
/// MeterCond1Temp 信息
|
||||
/// </summary>
|
||||
public string? MeterCond1TempInfo
|
||||
{
|
||||
get { return _MeterCond1TempInfo; }
|
||||
set { _MeterCond1TempInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterCond2TempInfo;
|
||||
/// <summary>
|
||||
/// MeterCond2Temp 信息
|
||||
/// </summary>
|
||||
public string? MeterCond2TempInfo
|
||||
{
|
||||
get { return _MeterCond2TempInfo; }
|
||||
set { _MeterCond2TempInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterCond2PressInfo;
|
||||
/// <summary>
|
||||
/// MeterCond2Press 信息
|
||||
/// </summary>
|
||||
public string? MeterCond2PressInfo
|
||||
{
|
||||
get { return _MeterCond2PressInfo; }
|
||||
set { _MeterCond2PressInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterEVAPExpTempInfo;
|
||||
/// <summary>
|
||||
/// MeterEVAPExpTemp 信息
|
||||
/// </summary>
|
||||
public string? MeterEVAPExpTempInfo
|
||||
{
|
||||
get { return _MeterEVAPExpTempInfo; }
|
||||
set { _MeterEVAPExpTempInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterExPressInfo;
|
||||
/// <summary>
|
||||
/// MeterExPress 信息
|
||||
/// </summary>
|
||||
public string? MeterExPressInfo
|
||||
{
|
||||
get { return _MeterExPressInfo; }
|
||||
set { _MeterExPressInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterHVVolInfo;
|
||||
/// <summary>
|
||||
/// MeterHVVol 信息
|
||||
/// </summary>
|
||||
public string? MeterHVVolInfo
|
||||
{
|
||||
get { return _MeterHVVolInfo; }
|
||||
set { _MeterHVVolInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterInhPressInfo;
|
||||
/// <summary>
|
||||
/// MeterInhPress 信息
|
||||
/// </summary>
|
||||
public string? MeterInhPressInfo
|
||||
{
|
||||
get { return _MeterInhPressInfo; }
|
||||
set { _MeterInhPressInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterInhTempInfo;
|
||||
/// <summary>
|
||||
/// MeterInhTemp 信息
|
||||
/// </summary>
|
||||
public string? MeterInhTempInfo
|
||||
{
|
||||
get { return _MeterInhTempInfo; }
|
||||
set { _MeterInhTempInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterLubePressInfo;
|
||||
/// <summary>
|
||||
/// MeterLubePress 信息
|
||||
/// </summary>
|
||||
public string? MeterLubePressInfo
|
||||
{
|
||||
get { return _MeterLubePressInfo; }
|
||||
set { _MeterLubePressInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterLVVolInfo;
|
||||
/// <summary>
|
||||
/// MeterLVVol 信息
|
||||
/// </summary>
|
||||
public string? MeterLVVolInfo
|
||||
{
|
||||
get { return _MeterLVVolInfo; }
|
||||
set { _MeterLVVolInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterOCRInfo;
|
||||
/// <summary>
|
||||
/// MeterOCR 信息
|
||||
/// </summary>
|
||||
public string? MeterOCRInfo
|
||||
{
|
||||
get { return _MeterOCRInfo; }
|
||||
set { _MeterOCRInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterOS1TempInfo;
|
||||
/// <summary>
|
||||
/// MeterOS1Temp 信息
|
||||
/// </summary>
|
||||
public string? MeterOS1TempInfo
|
||||
{
|
||||
get { return _MeterOS1TempInfo; }
|
||||
set { _MeterOS1TempInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterOS2TempInfo;
|
||||
/// <summary>
|
||||
/// MeterOS2Temp 信息
|
||||
/// </summary>
|
||||
public string? MeterOS2TempInfo
|
||||
{
|
||||
get { return _MeterOS2TempInfo; }
|
||||
set { _MeterOS2TempInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterPTCEntTempInfo;
|
||||
/// <summary>
|
||||
/// MeterPTCEntTemp 信息
|
||||
/// </summary>
|
||||
public string? MeterPTCEntTempInfo
|
||||
{
|
||||
get { return _MeterPTCEntTempInfo; }
|
||||
set { _MeterPTCEntTempInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterPTCFlowInfo;
|
||||
/// <summary>
|
||||
/// MeterPTCFlow 信息
|
||||
/// </summary>
|
||||
public string? MeterPTCFlowInfo
|
||||
{
|
||||
get { return _MeterPTCFlowInfo; }
|
||||
set { _MeterPTCFlowInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterPTCPwInfo;
|
||||
/// <summary>
|
||||
/// MeterPTCPw 信息
|
||||
/// </summary>
|
||||
public string? MeterPTCPwInfo
|
||||
{
|
||||
get { return _MeterPTCPwInfo; }
|
||||
set { _MeterPTCPwInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterEnvRHInfo;
|
||||
/// <summary>
|
||||
/// MeterTestBoxRH 信息
|
||||
/// </summary>
|
||||
public string? MeterEnvRHInfo
|
||||
{
|
||||
get { return _MeterEnvRHInfo; }
|
||||
set { _MeterEnvRHInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MeterEnvTempInfo;
|
||||
/// <summary>
|
||||
/// MeterTestBoxTemp 信息
|
||||
/// </summary>
|
||||
public string? MeterEnvTempInfo
|
||||
{
|
||||
get { return _MeterEnvTempInfo; }
|
||||
set { _MeterEnvTempInfo = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user