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