using Prism.Mvvm;
namespace TeamAAS_VP.Models.Product
{
public class ProductGlobalParamEx : BindableBase
{
private PressureModel _AssemblyPressure = new PressureModel();
///
/// 组装保压
///
public PressureModel AssemblyPressure
{
get { return _AssemblyPressure; }
set { SetProperty(ref _AssemblyPressure, value); }
}
private PressureModel _DownPressure = new PressureModel();
///
/// 后保压
///
public PressureModel DownPressure
{
get { return _DownPressure; }
set { SetProperty(ref _DownPressure, value); }
}
private float _Gap1UpLimit = 0;
///
/// gap1上限
///
public float Gap1UpLimit
{
get { return _Gap1UpLimit; }
set { SetProperty(ref _Gap1UpLimit, value); }
}
private float _Gap1DownLimit = 0;
///
/// gap1下限
///
public float Gap1DownLimit
{
get { return _Gap1DownLimit; }
set { SetProperty(ref _Gap1DownLimit, value); }
}
private float _Gap2UpLimit = 0;
///
/// gap2上限
///
public float Gap2UpLimit
{
get { return _Gap2UpLimit; }
set { SetProperty(ref _Gap2UpLimit, value); }
}
private float _Gap2DownLimit = 0;
///
/// gap2下限
///
public float Gap2DownLimit
{
get { return _Gap2DownLimit; }
set { SetProperty(ref _Gap2DownLimit, value); }
}
private float _Gap3UpLimit = 0;
///
/// gap3上限
///
public float Gap3UpLimit
{
get { return _Gap3UpLimit; }
set { SetProperty(ref _Gap3UpLimit, value); }
}
private float _Gap3DownLimit = 0;
///
/// gap3下限
///
public float Gap3DownLimit
{
get { return _Gap3DownLimit; }
set { SetProperty(ref _Gap3DownLimit, value); }
}
private float _Gap4UpLimit = 0;
///
/// gap4上限
///
public float Gap4UpLimit
{
get { return _Gap4UpLimit; }
set { SetProperty(ref _Gap4UpLimit, value); }
}
private float _Gap4DownLimit = 0;
///
/// gap4下限
///
public float Gap4DownLimit
{
get { return _Gap4DownLimit; }
set { SetProperty(ref _Gap4DownLimit, value); }
}
}
}