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
using DataEntity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 超声探测对象属性实体类
    /// </summary>
    public class UltrasonicObject : IEntity
    {
        /// <summary>
        /// 耗材名称
        /// </summary>
        public string labwareText { get; set; } = "";
        /// <summary>
        /// 耗材Id
        /// </summary>
        public string labwareValue { 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
    }
}