schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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));
            }
        }
    }
 
}