添加 MX-PD-盘古 项目文件

将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
This commit is contained in:
Shi.Ji
2026-05-18 11:43:09 +08:00
parent 03632a379d
commit e31d3560bb
739 changed files with 99783 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
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); }
}
}
}