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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
using DataEntity;
using System;
using System.Collections.Generic;
using System.Data;
using System.Windows;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Collections.ObjectModel;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 超声探测子数据
    /// </summary>
    public class MethodUltrasonicChild : IEntity
    {
        /// <summary>
        /// 耗材名称:1-圆形皿; 2-非圆形皿
        /// </summary>
        public string labwareText { get; set; } = "";
        /// <summary>
        /// 耗材Id
        /// </summary>
        public string labwareValue { get; set; } = "";
 
        /// <summary>
        /// 板位名:Text、Value一致:Px
        /// </summary>
        private string _positionText = "";
        public string positionText
        {
            get { return _positionText; }
            set
            {
                _positionText = value;
                OnPropertyChanged("positionText");
            }
        }
        public string positionValue { get; set; } = "";
 
        #region 非圆皿
        private int _rowNum = 0;
        /// <summary>
        /// 行数
        /// </summary>
        public int rowNum
        {
            get { return _rowNum; }
            set
            {
                _rowNum = value;
                OnPropertyChanged("rowNum");
            }
        }
 
        private int _columnNum = 0;
        /// <summary>
        /// 列数
        /// </summary>
        public int columnNum
        {
            get { return _columnNum; }
            set
            {
                _columnNum = value;
                OnPropertyChanged("columnNum");
            }
        }
 
        private double _closeTopVal = 0d;
        /// <summary>
        /// 距顶边
        /// </summary>
        public double closeTopVal
        {
            get { return _closeTopVal; }
            set
            {
                _closeTopVal = value;
                OnPropertyChanged("closeTopVal");
            }
        }
 
        private double _closeLeftVal = 0d;
        /// <summary>
        /// 距左边
        /// </summary>
        public double closeLeftVal
        {
            get { return _closeLeftVal; }
            set
            {
                _closeLeftVal = value;
                OnPropertyChanged("closeLeftVal");
            }
        }
 
        private double _xAxisVal = 0d;
        /// <summary>
        /// X间距
        /// </summary>
        public double xAxisVal
        {
            get { return _xAxisVal; }
            set
            {
                _xAxisVal = value;
                OnPropertyChanged("xAxisVal");
            }
        }
 
        private double _yAxisVal = 0d;
        /// <summary>
        /// Y间距
        /// </summary>
        public double yAxisVal
        {
            get { return _yAxisVal; }
            set
            {
                _yAxisVal = value;
                OnPropertyChanged("yAxisVal");
            }
        }
        #endregion
 
        #region 圆皿
        private double _xDishAxisVal = 0d;
        /// <summary>
        /// X坐标
        /// </summary>
        public double xDishAxisVal
        {
            get { return _xDishAxisVal; }
            set
            {
                _xDishAxisVal = value;
                OnPropertyChanged("xDishAxisVal");
            }
        }
 
        private double _yDishAxisVal = 0d;
        /// <summary>
        /// Y坐标
        /// </summary>
        public double yDishAxisVal
        {
            get { return _yDishAxisVal; }
            set
            {
                _yDishAxisVal = value;
                OnPropertyChanged("yDishAxisVal");
            }
        }
 
        /// <summary>
        /// 点位数据
        /// </summary>
        public ObservableCollection<DropdownName> pointList { get; set; } = null;
 
        #endregion
    }
}