using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace DataEntity
|
{
|
/// <summary>
|
/// 空间坐标类
|
/// </summary>
|
public class SpaceCoordinate : IEntity
|
{
|
private int _Index = 0;
|
/// <summary>
|
/// 序号
|
/// </summary>
|
[Description("序号")]
|
public int Index
|
{
|
get { return _Index; }
|
set
|
{
|
if (Index == value) return;
|
_Index = value;
|
OnPropertyChanged(nameof(Index));
|
}
|
}
|
|
private string _x = "0.0";
|
/// <summary>
|
/// 偏转x
|
/// </summary>
|
[Description("偏转x")]
|
public string x
|
{
|
get { return _x; }
|
set
|
{
|
if (x == value) return;
|
_x = value;
|
OnPropertyChanged(nameof(x));
|
}
|
}
|
|
private string _y = "0.0";
|
/// <summary>
|
/// 偏转y
|
/// </summary>
|
[Description("偏转y")]
|
public string y
|
{
|
get { return _y; }
|
set
|
{
|
if (y == value) return;
|
_y = value;
|
OnPropertyChanged(nameof(y));
|
}
|
}
|
private string _z = "0.0";
|
/// <summary>
|
/// 偏转z
|
/// </summary>
|
[Description("偏转z")]
|
public string z
|
{
|
get { return _z; }
|
set
|
{
|
if (z == value) return;
|
_z = value;
|
OnPropertyChanged(nameof(z));
|
}
|
}
|
}
|
|
}
|