This commit is contained in:
2024-12-18 15:50:21 +08:00
parent 684973e6b7
commit b2c54119ea
214 changed files with 65908 additions and 8461 deletions

View File

@@ -70,7 +70,7 @@ namespace CapMachine.Wpf.Dtos
/// <summary>
/// 吸气压力 信息
/// </summary>
[Column("吸气压力(MPa)")]
[Column("吸气压力(BarA)")]
public double InhPress
{
get { return _InhPress; }
@@ -81,7 +81,7 @@ namespace CapMachine.Wpf.Dtos
/// <summary>
/// 排气压力 信息
/// </summary>
[Column("排气压力(MPa)")]
[Column("排气压力(BarA)")]
public double ExPress
{
get { return _ExPress; }
@@ -125,7 +125,7 @@ namespace CapMachine.Wpf.Dtos
/// <summary>
/// COND2压力 信息
/// </summary>
[Column("COND2压力(MPa)")]
[Column("COND2压力(BarA)")]
public double Cond2Press
{
get { return _Cond2Press; }
@@ -158,7 +158,7 @@ namespace CapMachine.Wpf.Dtos
/// <summary>
/// 润滑油压力 信息
/// </summary>
[Column("润滑油压力(MPa)")]
[Column("润滑油压力(BarA)")]
public double LubePress
{
get { return _LubePress; }
@@ -305,7 +305,7 @@ namespace CapMachine.Wpf.Dtos
/// <summary>
/// 吸排气阀
/// </summary>
[Column("InhExhValve")]
[Column("吸排气阀")]
public bool InhExhValve
{
get { return _InhExhValve; }
@@ -323,15 +323,15 @@ namespace CapMachine.Wpf.Dtos
set { _CapEnable = value; RaisePropertyChanged(); }
}
private bool _HeatEnable;
private bool _PTCEnable;
/// <summary>
/// 加热器使能
/// 加热器使能/PTC使能
/// </summary>
[Column("加热器使能")]
public bool HeatEnable
[Column("PTC使能")]
public bool PTCEnable
{
get { return _HeatEnable; }
set { _HeatEnable = value; RaisePropertyChanged(); }
get { return _PTCEnable; }
set { _PTCEnable = value; RaisePropertyChanged(); }
}
}
}