|
|
|
@ -4,6 +4,7 @@ using Admin.Core.Model;
|
|
|
|
|
using Admin.Core.Model.ViewModels;
|
|
|
|
|
using Admin.Core.Service;
|
|
|
|
|
using Admin.Core.Tasks;
|
|
|
|
|
using Aucma.Core.BoxFoam.Business;
|
|
|
|
|
using Aucma.Core.BoxFoam.Models;
|
|
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
@ -22,48 +23,188 @@ namespace Aucma.Core.BoxFoam.ViewModels
|
|
|
|
|
|
|
|
|
|
public FoamMachinesPageViewModel()
|
|
|
|
|
{
|
|
|
|
|
Job_BoxFoamLastData_Quartz.RefreshLastShotDataDelegateEvent += RefreshData;
|
|
|
|
|
CollectionFoamMachine.RefreshLastShotDataDelegateEvent += RefreshData;
|
|
|
|
|
CollectionFoamMachine.RefreshGunDataDelegateEvent += RefreshGunData;
|
|
|
|
|
CollectionFoamMachine.RefreshSystemDataDelegateEvent += RefreshSystemData;
|
|
|
|
|
_boxLastShotRecordServices = App.ServiceProvider.GetService<IBoxLastShotRecordServices>();
|
|
|
|
|
// LoadData();
|
|
|
|
|
LoadData();
|
|
|
|
|
//Task.WaitAll(LoadData());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 刷新系统参数---系统1,系统2
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 系统1,系统2数据刷新
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void RefreshSystemData(Dictionary<string, FoamMachinesModel> keys)
|
|
|
|
|
{
|
|
|
|
|
foreach (KeyValuePair<string, FoamMachinesModel> kvp in keys)
|
|
|
|
|
{
|
|
|
|
|
if (kvp.Key.Equals("1"))
|
|
|
|
|
{
|
|
|
|
|
RefreshSystem1(kvp.Value);
|
|
|
|
|
}
|
|
|
|
|
else if (kvp.Key.Equals("2"))
|
|
|
|
|
{
|
|
|
|
|
RefreshSystem2(kvp.Value);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 刷新系统1
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="record"></param>
|
|
|
|
|
public void RefreshSystem1(FoamMachinesModel record)
|
|
|
|
|
{
|
|
|
|
|
PolInputPressure1 = record.POL_LP;
|
|
|
|
|
IsoInputPressure1 = record.ISO_LP;
|
|
|
|
|
PolOutputPressure1 = record.POL_HP;
|
|
|
|
|
IsoOutputPressure1 = record.ISO_HP;
|
|
|
|
|
PolFlow1 = record.POL_Vol;
|
|
|
|
|
IsoFlow1 = record.ISO_Vol;
|
|
|
|
|
PoleTmperature1 = record.POL_Temp;
|
|
|
|
|
IsoTemperature1 = record.ISO_Temp;
|
|
|
|
|
PolMaterialLevel1 = record.POL_Level;
|
|
|
|
|
IsoMaterialLevel1 = record.ISO_Level;
|
|
|
|
|
Pressure1 = record.Hydr_Press;
|
|
|
|
|
Temperature1 = record.Hydr_Temp;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 刷新系统2
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="record"></param>
|
|
|
|
|
public void RefreshSystem2(FoamMachinesModel record)
|
|
|
|
|
{
|
|
|
|
|
PolInputPressure2 = record.POL_LP;
|
|
|
|
|
IsoInputPressure2 = record.ISO_LP;
|
|
|
|
|
PolOutputPressure2 = record.POL_HP;
|
|
|
|
|
IsoOutputPressure2 = record.ISO_HP;
|
|
|
|
|
PolFlow2 = record.POL_Vol;
|
|
|
|
|
IsoFlow2 = record.ISO_Vol;
|
|
|
|
|
PoleTmperature2 = record.POL_Temp;
|
|
|
|
|
IsoTemperature2 = record.ISO_Temp;
|
|
|
|
|
PolMaterialLevel2 = record.POL_Level;
|
|
|
|
|
IsoMaterialLevel2 = record.ISO_Level;
|
|
|
|
|
Pressure2 = record.Hydr_Press;
|
|
|
|
|
Temperature2 = record.Hydr_Temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 刷新每一枪数据
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A1,B1,A2,B2枪数据刷新
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void RefreshGunData(Dictionary<string, BoxLastShotRecord> keys)
|
|
|
|
|
{
|
|
|
|
|
foreach (KeyValuePair<string, BoxLastShotRecord> kvp in keys)
|
|
|
|
|
{
|
|
|
|
|
if (kvp.Key.Equals("A1"))
|
|
|
|
|
{
|
|
|
|
|
RefreshA1(kvp.Value);
|
|
|
|
|
}
|
|
|
|
|
else if (kvp.Key.Equals("B1"))
|
|
|
|
|
{
|
|
|
|
|
RefreshB1(kvp.Value);
|
|
|
|
|
}
|
|
|
|
|
else if (kvp.Key.Equals("A2"))
|
|
|
|
|
{
|
|
|
|
|
RefreshA2(kvp.Value);
|
|
|
|
|
}
|
|
|
|
|
else if (kvp.Key.Equals("B2"))
|
|
|
|
|
{
|
|
|
|
|
RefreshB2(kvp.Value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 刷新A1数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="record"></param>
|
|
|
|
|
public void RefreshA1(BoxLastShotRecord record)
|
|
|
|
|
{
|
|
|
|
|
POLPressure1a = record.PolHp;
|
|
|
|
|
POLTemperature1a = record.PolTemp;
|
|
|
|
|
ISOPressure1a = record.IsoHp;
|
|
|
|
|
ISOTemperature1a = record.IsoTemp;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 刷新B1数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="record"></param>
|
|
|
|
|
public void RefreshB1(BoxLastShotRecord record)
|
|
|
|
|
{
|
|
|
|
|
POLPressure1b = record.PolHp;
|
|
|
|
|
POLTemperature1b = record.PolTemp;
|
|
|
|
|
ISOPressure1b = record.IsoHp;
|
|
|
|
|
ISOTemperature1b = record.IsoTemp;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 刷新A2数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="record"></param>
|
|
|
|
|
public void RefreshA2(BoxLastShotRecord record)
|
|
|
|
|
{
|
|
|
|
|
POLPressure2a = record.PolHp;
|
|
|
|
|
POLTemperature2a = record.PolTemp;
|
|
|
|
|
ISOPressure2a = record.IsoHp;
|
|
|
|
|
ISOTemperature2a = record.IsoTemp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 刷新B2数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="record"></param>
|
|
|
|
|
public void RefreshB2(BoxLastShotRecord record)
|
|
|
|
|
{
|
|
|
|
|
POLPressure2b = record.PolHp;
|
|
|
|
|
POLTemperature2b = record.PolTemp;
|
|
|
|
|
ISOPressure2b = record.IsoHp;
|
|
|
|
|
ISOTemperature2b = record.IsoTemp;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// datagrid刷新
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="record"></param>
|
|
|
|
|
public void RefreshData(BoxLastShotRecord record)
|
|
|
|
|
{
|
|
|
|
|
System.Windows.Application.Current.Dispatcher.Invoke((Action)(async () =>
|
|
|
|
|
{
|
|
|
|
|
string system = string.Empty;
|
|
|
|
|
if (record.System == "1") {
|
|
|
|
|
string system = string.Empty;
|
|
|
|
|
if (record.System == "1")
|
|
|
|
|
{
|
|
|
|
|
system = "1系统";
|
|
|
|
|
|
|
|
|
|
// PolFlow1 = record.POLInjecFlowRate;
|
|
|
|
|
// IsoFlow1 = record.ISOInjecFlowRate;
|
|
|
|
|
// PoleTmperature1 = record.POLInjecTemperatureOfGunHead;
|
|
|
|
|
// IsoTemperature1 = record.ISOInjecTemperatureOfGunHead;
|
|
|
|
|
// PolFlow1 = record.POLInjecFlowRate;
|
|
|
|
|
// IsoFlow1 = record.ISOInjecFlowRate;
|
|
|
|
|
// PoleTmperature1 = record.POLInjecTemperatureOfGunHead;
|
|
|
|
|
// IsoTemperature1 = record.ISOInjecTemperatureOfGunHead;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (record.System == "2") { system = "2系统"; }
|
|
|
|
|
LastShotRecordDataGrid.Add(new LastShotRecordModel()
|
|
|
|
|
{
|
|
|
|
|
No = LastShotRecordDataGrid.Count+1,
|
|
|
|
|
System = system,
|
|
|
|
|
GunHead = record.GunCode,
|
|
|
|
|
// StationNumber = record.StationNumber,
|
|
|
|
|
PolInjectionpressure = record.PolHp,
|
|
|
|
|
IsoInjectionpressure = record.IsoHp,
|
|
|
|
|
PolInjectiontemperature = record.PolTemp,
|
|
|
|
|
IsoInjectiontemperature = record.IsoTemp,
|
|
|
|
|
LastTime = record.CreateTime,
|
|
|
|
|
Createtime = record.CreateTime
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (record.System == "2") { system = "2系统"; }
|
|
|
|
|
LastShotRecordModel model = new LastShotRecordModel();
|
|
|
|
|
model.No = LastShotRecordDataGrid.Count + 1;
|
|
|
|
|
model.System = system;
|
|
|
|
|
model.GunHead = record.GunCode;
|
|
|
|
|
// StationNumber = record.StationNumber,
|
|
|
|
|
model.IsoInjectionpressure = record.PolHp;
|
|
|
|
|
model.IsoInjectionpressure = record.IsoHp;
|
|
|
|
|
model.PolInjectiontemperature = record.PolTemp;
|
|
|
|
|
model.IsoInjectiontemperature = record.IsoTemp;
|
|
|
|
|
model.PolInjectionpressure = record.PolHp;
|
|
|
|
|
model.StationNumber = record.PourNu;
|
|
|
|
|
model.LastTime = record.CreateTime;
|
|
|
|
|
model.Createtime = record.CreateTime;
|
|
|
|
|
LastShotRecordDataGrid.Insert(0, model);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 加载DataGrid数据
|
|
|
|
|
private async Task LoadData()
|
|
|
|
|
{
|
|
|
|
@ -74,29 +215,33 @@ namespace Aucma.Core.BoxFoam.ViewModels
|
|
|
|
|
int i = 1;
|
|
|
|
|
var list = await _boxLastShotRecordServices.QueryAsync();
|
|
|
|
|
if (list == null) return;
|
|
|
|
|
list.OrderByDescending(d => d.CreateTime);
|
|
|
|
|
foreach (var item in list.Take(50))
|
|
|
|
|
list.OrderByDescending(d => d.CreateTime).Take(30);
|
|
|
|
|
foreach (var item in list)
|
|
|
|
|
{
|
|
|
|
|
string system = string.Empty;
|
|
|
|
|
if (item.System == "1") { system = "1系统"; }
|
|
|
|
|
if (item.System == "2") { system = "2系统"; }
|
|
|
|
|
LastShotRecordDataGrid.Add(new LastShotRecordModel()
|
|
|
|
|
LastShotRecordModel model = new LastShotRecordModel();
|
|
|
|
|
if (LastShotRecordDataGrid.Count() == 0)
|
|
|
|
|
{
|
|
|
|
|
model.No = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
No = i,
|
|
|
|
|
System = system,
|
|
|
|
|
GunHead=item.GunCode,
|
|
|
|
|
// StationNumber=item.StationNumber,
|
|
|
|
|
PolInjectionpressure = item.PolHp,
|
|
|
|
|
IsoInjectionpressure = item.IsoHp,
|
|
|
|
|
PolInjectiontemperature = item.PolTemp,
|
|
|
|
|
IsoInjectiontemperature = item.IsoTemp,
|
|
|
|
|
LastTime = item.CreateTime,
|
|
|
|
|
Createtime = item.CreateTime
|
|
|
|
|
});
|
|
|
|
|
i++;
|
|
|
|
|
};
|
|
|
|
|
// Datalist.Insert(0, Datalist[Datalist.Count - 1]);
|
|
|
|
|
// Datalist.RemoveAt(Datalist.Count - 1);
|
|
|
|
|
model.No = LastShotRecordDataGrid.Count() + 1;
|
|
|
|
|
}
|
|
|
|
|
model.No = i;
|
|
|
|
|
model.System = system;
|
|
|
|
|
model.GunHead = item.GunCode;
|
|
|
|
|
model.PolInjectionpressure = item.PolHp;
|
|
|
|
|
model.IsoInjectionpressure = item.IsoHp;
|
|
|
|
|
model.PolInjectiontemperature = item.PolTemp;
|
|
|
|
|
model.IsoInjectiontemperature = item.IsoTemp;
|
|
|
|
|
model.LastTime = item.CreateTime;
|
|
|
|
|
model.Createtime = item.CreateTime;
|
|
|
|
|
model.StationNumber = item.PourNu;
|
|
|
|
|
LastShotRecordDataGrid.Insert(0, model);
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -228,79 +373,103 @@ namespace Aucma.Core.BoxFoam.ViewModels
|
|
|
|
|
get => _temperature1;
|
|
|
|
|
set => SetProperty(ref _temperature1, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A枪状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _status1;
|
|
|
|
|
public string Status1
|
|
|
|
|
//private string _status1a;
|
|
|
|
|
//public string Status1a
|
|
|
|
|
//{
|
|
|
|
|
// get => _status1a;
|
|
|
|
|
// set => SetProperty(ref _status1a, value);
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// pol压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLPressure1a = "0.00";
|
|
|
|
|
public string POLPressure1a
|
|
|
|
|
{
|
|
|
|
|
get => _status1;
|
|
|
|
|
set => SetProperty(ref _status1, value);
|
|
|
|
|
get => _POLPressure1a;
|
|
|
|
|
set => SetProperty(ref _POLPressure1a, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// B枪状态
|
|
|
|
|
/// A枪POL温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _status11;
|
|
|
|
|
public string Status11
|
|
|
|
|
private string _POLTemperature1a = "0.00";
|
|
|
|
|
public string POLTemperature1a
|
|
|
|
|
{
|
|
|
|
|
get => _status11;
|
|
|
|
|
set => SetProperty(ref _status11, value);
|
|
|
|
|
get => _POLTemperature1a;
|
|
|
|
|
set => SetProperty(ref _POLTemperature1a, value);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 压力
|
|
|
|
|
/// iso压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLPressure1 = "0.00";
|
|
|
|
|
public string POLPressure1
|
|
|
|
|
private string _ISOPressure1a = "0.00";
|
|
|
|
|
public string ISOPressure1a
|
|
|
|
|
{
|
|
|
|
|
get => _POLPressure1;
|
|
|
|
|
set => SetProperty(ref _POLPressure1, value);
|
|
|
|
|
get => _ISOPressure1a;
|
|
|
|
|
set => SetProperty(ref _ISOPressure1a, value);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A枪POL温度
|
|
|
|
|
/// iso温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLTemperature1 = "0.00";
|
|
|
|
|
public string POLTemperature1
|
|
|
|
|
private string _ISOTemperature1a = "0.0";
|
|
|
|
|
public string ISOTemperature1a
|
|
|
|
|
{
|
|
|
|
|
get => _POLTemperature1;
|
|
|
|
|
set => SetProperty(ref _POLTemperature1, value);
|
|
|
|
|
get => _ISOTemperature1a;
|
|
|
|
|
set => SetProperty(ref _ISOTemperature1a, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// B枪POL温度
|
|
|
|
|
/// B枪状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLTemperature11 = "0.0";
|
|
|
|
|
public string POLTemperature11
|
|
|
|
|
//private string _status1b;
|
|
|
|
|
//public string Status1b
|
|
|
|
|
//{
|
|
|
|
|
// get => _status1b;
|
|
|
|
|
// set => SetProperty(ref _status1b, value);
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// B枪pol压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLPressure1b = "0.00";
|
|
|
|
|
public string POLPressure1b
|
|
|
|
|
{
|
|
|
|
|
get => _POLTemperature11;
|
|
|
|
|
set => SetProperty(ref _POLTemperature11, value);
|
|
|
|
|
get => _POLPressure1b;
|
|
|
|
|
set => SetProperty(ref _POLPressure1b, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 压力
|
|
|
|
|
/// B枪POL温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _ISOPressure1 = "0.00";
|
|
|
|
|
public string ISOPressure1
|
|
|
|
|
private string _POLTemperature1b = "0.00";
|
|
|
|
|
public string POLTemperature1b
|
|
|
|
|
{
|
|
|
|
|
get => _ISOPressure1;
|
|
|
|
|
set => SetProperty(ref _ISOPressure1, value);
|
|
|
|
|
get => _POLTemperature1b;
|
|
|
|
|
set => SetProperty(ref _POLTemperature1b, value);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 压力
|
|
|
|
|
/// B枪iso压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _ISOPressure11 = "0.00";
|
|
|
|
|
public string ISOPressure11
|
|
|
|
|
private string _ISOPressure1b = "0.00";
|
|
|
|
|
public string ISOPressure1b
|
|
|
|
|
{
|
|
|
|
|
get => _ISOPressure11;
|
|
|
|
|
set => SetProperty(ref _ISOPressure11, value);
|
|
|
|
|
get => _ISOPressure1b;
|
|
|
|
|
set => SetProperty(ref _ISOPressure1b, value);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 温度
|
|
|
|
|
/// B枪iso温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _ISOTemperature11 = "0.0";
|
|
|
|
|
public string ISOTemperature11
|
|
|
|
|
private string _ISOTemperature1b = "0.0";
|
|
|
|
|
public string ISOTemperature1b
|
|
|
|
|
{
|
|
|
|
|
get => _ISOTemperature11;
|
|
|
|
|
set => SetProperty(ref _ISOTemperature11, value);
|
|
|
|
|
get => _ISOTemperature1b;
|
|
|
|
|
set => SetProperty(ref _ISOTemperature1b, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 2系统属性
|
|
|
|
@ -415,100 +584,92 @@ namespace Aucma.Core.BoxFoam.ViewModels
|
|
|
|
|
get => _temperature2;
|
|
|
|
|
set => SetProperty(ref _temperature2, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A枪状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _status2 = "";
|
|
|
|
|
public string Status2
|
|
|
|
|
{
|
|
|
|
|
get => _status2;
|
|
|
|
|
set => SetProperty(ref _status2, value);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// B枪状态
|
|
|
|
|
/// A枪POL压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _status12 = "";
|
|
|
|
|
public string Status12
|
|
|
|
|
private string _POLPressure2a = "0.00";
|
|
|
|
|
public string POLPressure2a
|
|
|
|
|
{
|
|
|
|
|
get => _status12;
|
|
|
|
|
set => SetProperty(ref _status12, value);
|
|
|
|
|
get => _POLPressure2a;
|
|
|
|
|
set => SetProperty(ref _POLPressure2a, value);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 压力
|
|
|
|
|
/// A枪POL温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLPressure2 = "0.00";
|
|
|
|
|
public string POLPressure2
|
|
|
|
|
private string _POLTemperature2a = "0.00";
|
|
|
|
|
public string POLTemperature2a
|
|
|
|
|
{
|
|
|
|
|
get => _POLPressure2;
|
|
|
|
|
set => SetProperty(ref _POLPressure2, value);
|
|
|
|
|
get => _POLTemperature2a;
|
|
|
|
|
set => SetProperty(ref _POLTemperature2a, value);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 温度
|
|
|
|
|
/// iso压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLTemperature2 = "0.00";
|
|
|
|
|
public string POLTemperature2
|
|
|
|
|
private string _ISOPressure2a = "0.00";
|
|
|
|
|
public string ISOPressure2a
|
|
|
|
|
{
|
|
|
|
|
get => _POLTemperature2;
|
|
|
|
|
set => SetProperty(ref _POLTemperature2, value);
|
|
|
|
|
get => _ISOPressure2a;
|
|
|
|
|
set => SetProperty(ref _ISOPressure2a, value);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A枪压力
|
|
|
|
|
/// iso温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _ISOPressure2 = "0.00";
|
|
|
|
|
public string ISOPressure2
|
|
|
|
|
private string _ISOTemperature2a = "0.0";
|
|
|
|
|
public string ISOTemperature2a
|
|
|
|
|
{
|
|
|
|
|
get => _ISOPressure2;
|
|
|
|
|
set => SetProperty(ref _ISOPressure2, value);
|
|
|
|
|
get => _ISOTemperature2a;
|
|
|
|
|
set => SetProperty(ref _ISOTemperature2a, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///A枪温度
|
|
|
|
|
/// B枪状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _ISOTemperature22 = "0.0";
|
|
|
|
|
public string ISOTemperature22
|
|
|
|
|
{
|
|
|
|
|
get => _ISOTemperature22;
|
|
|
|
|
set => SetProperty(ref _ISOTemperature22, value);
|
|
|
|
|
}
|
|
|
|
|
//private string _status2b;
|
|
|
|
|
//public string Status2b
|
|
|
|
|
//{
|
|
|
|
|
// get => _status2b;
|
|
|
|
|
// set => SetProperty(ref _status2b, value);
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// B枪温度
|
|
|
|
|
/// B枪pol压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _ISOTemperature222 = "0.0";
|
|
|
|
|
public string ISOTemperature222
|
|
|
|
|
private string _POLPressure2b = "0.00";
|
|
|
|
|
public string POLPressure2b
|
|
|
|
|
{
|
|
|
|
|
get => _ISOTemperature222;
|
|
|
|
|
set => SetProperty(ref _ISOTemperature222, value);
|
|
|
|
|
get => _POLPressure2b;
|
|
|
|
|
set => SetProperty(ref _POLPressure2b, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// B枪温度
|
|
|
|
|
/// B枪POL温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLPressure22 = "0.0";
|
|
|
|
|
public string POLPressure22
|
|
|
|
|
private string _POLTemperature2b = "0.00";
|
|
|
|
|
public string POLTemperature2b
|
|
|
|
|
{
|
|
|
|
|
get => _POLPressure22;
|
|
|
|
|
set => SetProperty(ref _POLPressure22, value);
|
|
|
|
|
get => _POLTemperature2b;
|
|
|
|
|
set => SetProperty(ref _POLTemperature2b, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// B枪ISO温度
|
|
|
|
|
/// B枪iso压力
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _POLTemperature22 = "0.0";
|
|
|
|
|
public string POLTemperature22
|
|
|
|
|
private string _ISOPressure2b = "0.00";
|
|
|
|
|
public string ISOPressure2b
|
|
|
|
|
{
|
|
|
|
|
get => _POLTemperature22;
|
|
|
|
|
set => SetProperty(ref _POLTemperature22, value);
|
|
|
|
|
get => _ISOPressure2b;
|
|
|
|
|
set => SetProperty(ref _ISOPressure2b, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// B枪ISO压力
|
|
|
|
|
/// B枪iso温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _ISOPressure22 = "0.0";
|
|
|
|
|
public string ISOPressure22
|
|
|
|
|
private string _ISOTemperature2b = "0.0";
|
|
|
|
|
public string ISOTemperature2b
|
|
|
|
|
{
|
|
|
|
|
get => _ISOPressure22;
|
|
|
|
|
set => SetProperty(ref _ISOPressure22, value);
|
|
|
|
|
get => _ISOTemperature2b;
|
|
|
|
|
set => SetProperty(ref _ISOTemperature2b, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|