规范类名及命名空间名称
This commit is contained in:
@@ -113,4 +113,4 @@ namespace XplorePlane.Models
|
||||
DateTime UpdatedAt,
|
||||
IReadOnlyList<CncNode> Nodes
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -42,4 +42,4 @@ namespace XplorePlane.Models
|
||||
string CncProgramPath,
|
||||
IReadOnlyList<MatrixCell> Cells
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -22,4 +22,4 @@ namespace XplorePlane.Models
|
||||
int FailCount,
|
||||
double PassRate
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -12,6 +12,7 @@ namespace XplorePlane.Models
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
private string _name;
|
||||
|
||||
public string Name
|
||||
{
|
||||
get => _name;
|
||||
@@ -19,6 +20,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private ObservableCollection<object> _children;
|
||||
|
||||
public ObservableCollection<object> Children
|
||||
{
|
||||
get => _children;
|
||||
@@ -40,6 +42,7 @@ namespace XplorePlane.Models
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
private string _name;
|
||||
|
||||
public string Name
|
||||
{
|
||||
get => _name;
|
||||
@@ -47,6 +50,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private string _iconColor;
|
||||
|
||||
public string IconColor
|
||||
{
|
||||
get => _iconColor;
|
||||
@@ -54,6 +58,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private bool _isSelected;
|
||||
|
||||
public bool IsSelected
|
||||
{
|
||||
get => _isSelected;
|
||||
@@ -77,6 +82,7 @@ namespace XplorePlane.Models
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
private string _featureName;
|
||||
|
||||
public string FeatureName
|
||||
{
|
||||
get => _featureName;
|
||||
@@ -84,6 +90,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _x;
|
||||
|
||||
public double X
|
||||
{
|
||||
get => _x;
|
||||
@@ -91,6 +98,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _y;
|
||||
|
||||
public double Y
|
||||
{
|
||||
get => _y;
|
||||
@@ -98,6 +106,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private ObservableCollection<CalloutRowVM> _rows;
|
||||
|
||||
public ObservableCollection<CalloutRowVM> Rows
|
||||
{
|
||||
get => _rows;
|
||||
@@ -121,6 +130,7 @@ namespace XplorePlane.Models
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
private string _label;
|
||||
|
||||
public string Label
|
||||
{
|
||||
get => _label;
|
||||
@@ -128,6 +138,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private string _nominal;
|
||||
|
||||
public string Nominal
|
||||
{
|
||||
get => _nominal;
|
||||
@@ -135,6 +146,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private string _measured;
|
||||
|
||||
public string Measured
|
||||
{
|
||||
get => _measured;
|
||||
@@ -142,6 +154,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private string _tolerance;
|
||||
|
||||
public string Tolerance
|
||||
{
|
||||
get => _tolerance;
|
||||
@@ -149,6 +162,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private string _deviation;
|
||||
|
||||
public string Deviation
|
||||
{
|
||||
get => _deviation;
|
||||
@@ -156,6 +170,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private bool _isPass;
|
||||
|
||||
public bool IsPass
|
||||
{
|
||||
get => _isPass;
|
||||
@@ -182,6 +197,7 @@ namespace XplorePlane.Models
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
private string _name;
|
||||
|
||||
public string Name
|
||||
{
|
||||
get => _name;
|
||||
@@ -189,6 +205,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private string _datumLabel;
|
||||
|
||||
public string DatumLabel
|
||||
{
|
||||
get => _datumLabel;
|
||||
@@ -196,6 +213,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _x;
|
||||
|
||||
public double X
|
||||
{
|
||||
get => _x;
|
||||
@@ -203,6 +221,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _y;
|
||||
|
||||
public double Y
|
||||
{
|
||||
get => _y;
|
||||
@@ -210,6 +229,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _z;
|
||||
|
||||
public double Z
|
||||
{
|
||||
get => _z;
|
||||
@@ -217,6 +237,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _nrX;
|
||||
|
||||
public double NrX
|
||||
{
|
||||
get => _nrX;
|
||||
@@ -224,6 +245,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _nrY;
|
||||
|
||||
public double NrY
|
||||
{
|
||||
get => _nrY;
|
||||
@@ -231,6 +253,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _nrZ;
|
||||
|
||||
public double NrZ
|
||||
{
|
||||
get => _nrZ;
|
||||
@@ -238,6 +261,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _height;
|
||||
|
||||
public double Height
|
||||
{
|
||||
get => _height;
|
||||
@@ -245,6 +269,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _radius;
|
||||
|
||||
public double Radius
|
||||
{
|
||||
get => _radius;
|
||||
@@ -252,6 +277,7 @@ namespace XplorePlane.Models
|
||||
}
|
||||
|
||||
private double _diameter;
|
||||
|
||||
public double Diameter
|
||||
{
|
||||
get => _diameter;
|
||||
@@ -284,4 +310,4 @@ namespace XplorePlane.Models
|
||||
|
||||
public void Execute(object parameter) => _execute(parameter);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -27,4 +27,4 @@ namespace XplorePlane.Models
|
||||
public int OldIndex { get; set; }
|
||||
public int NewIndex { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -41,4 +41,4 @@ namespace XplorePlane.Models
|
||||
{
|
||||
public static readonly RecipeExecutionState Default = new(0, 0, RecipeExecutionStatus.Idle, string.Empty);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -117,4 +117,4 @@ namespace XplorePlane.Models
|
||||
{
|
||||
public static readonly LinkedViewState Default = new(new PhysicalPosition(0, 0, 0), false, DateTime.MinValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user