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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 手工挑选形成的菌落涂布文件数据实体类
    /// </summary>
    public class ManualChoiceData:INotifyPropertyChanged
    {
        /// <summary>
        /// 
        /// </summary>
        public event PropertyChangedEventHandler PropertyChanged;
        
        private int _choice_id;
        /// <summary>
        /// Id编号
        /// </summary>
        public int choice_id
        {
            get { return _choice_id; }
            set
            {
                _choice_id = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(choice_id)));
                }
            }
        }
 
        private string _sourceplate;
        /// <summary>
        /// 来源板
        /// </summary>
        public string sourceplate
        {
            get { return _sourceplate; }
            set
            {
                _sourceplate = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(sourceplate)));
                }
            }
        }
 
        private string _sourceplate_num;
        /// <summary>
        /// 来源板二维码
        /// </summary>
        public string sourceplate_num
        {
            get { return _sourceplate_num; }
            set
            {
                _sourceplate_num = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(sourceplate_num)));
                }
            }
        }
 
        private string _machine_coordinate;
        /// <summary>
        ///机械坐标
        /// </summary>
        public string machine_coordinate
        {
            get { return _machine_coordinate; }
            set
            {
                _machine_coordinate = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(machine_coordinate)));
                }
            }
        }
 
        private string _pixel_coordinate;
        /// <summary>
        ///像素坐标
        /// </summary>
        public string pixel_coordinate
        {
            get { return _pixel_coordinate; }
            set
            {
                _pixel_coordinate = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(pixel_coordinate)));
                }
            }
        }
 
        private string _targetplate;
        /// <summary>
        /// 目标板
        /// </summary>
        public string targetplate
        {
            get { return _targetplate; }
            set
            {
                _targetplate = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(targetplate)));
                }
            }
        }
 
        private string _targetplate_num;
        /// <summary>
        /// 目标板二维码
        /// </summary>
        public string targetplate_num
        {
            get { return _targetplate_num; }
            set
            {
                _targetplate_num = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(targetplate_num)));
                }
            }
        }
 
        private string _targetplate_well;
        /// <summary>
        /// 目标板孔位
        /// </summary>
        public string targetplate_well
        {
            get { return _targetplate_well; }
            set
            {
                _targetplate_well = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(targetplate_well)));
                }
            }
        }
 
        private bool _is_new_plate_batch;
        /// <summary>
        /// 是否是新一批次的目标板(目标板不够用时,需要弹窗,人工补充耗材后点击继续)
        /// </summary>
        public bool is_new_plate_batch
        {
            get { return _is_new_plate_batch; }
            set
            {
                _is_new_plate_batch = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(is_new_plate_batch)));
                }
            }
        }
 
        private bool _is_plate_last_well;
        /// <summary>
        /// 是否是一个板子最后的一个有效孔
        /// </summary>
        public bool is_plate_last_well
        {
            get { return _is_plate_last_well; }
            set
            {
                _is_plate_last_well = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(nameof(is_plate_last_well)));
                }
            }
        }
    }
}