Files
test_demo/MX-PD-盘古 - new/PanGu.DieBonderApp/MainShell/Recipe/Models/ProcessAxisCompensationParameter.cs
Shi.Ji e31d3560bb 添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
2026-05-18 11:43:09 +08:00

50 lines
1.4 KiB
C#

using Stylet;
namespace MainShell.Recipe.Models
{
public class ProcessAxisCompensationParameter : PropertyChangedBase
{
private string _axisName;
public string AxisName
{
get { return _axisName; }
set { SetAndNotify(ref _axisName, value); }
}
private double _compensationValue;
public double CompensationValue
{
get { return _compensationValue; }
set { SetAndNotify(ref _compensationValue, value); }
}
private double _phsX1Compensation;
public double PhsX1Compensation
{
get { return _phsX1Compensation; }
set { SetAndNotify(ref _phsX1Compensation, value); }
}
private double _phsY1Compensation;
public double PhsY1Compensation
{
get { return _phsY1Compensation; }
set { SetAndNotify(ref _phsY1Compensation, value); }
}
private double _wsXCompensation;
public double WsXCompensation
{
get { return _wsXCompensation; }
set { SetAndNotify(ref _wsXCompensation, value); }
}
private double _stageYCompensation;
public double StageYCompensation
{
get { return _stageYCompensation; }
set { SetAndNotify(ref _stageYCompensation, value); }
}
}
}