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
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DataEntity;
namespace XImagingXhandler.XDAL
{
    public class MethodFileMoveLabware:IEntity
    {
        public string isrun { get; set; }
        public string status { get; set; }
        public string name { get; set; }
        public string comment { get; set; } = "";
 
        public string strIndex { get; set; }
        private string _label;
        public string label
        {
            get { return _label; }
            set
            {
                _label = value;
                OnPropertyChanged("label");
            }
        }
 
        public string armText { get; set; }
        public string armValue { get; set; }
 
        private string _filePath;
        /// <summary>
        /// 移液表文件路径
        /// </summary>
        public string filePath
        {
            get { return _filePath; }
            set
            {
                _filePath = value;
                OnPropertyChanged("filePath");
            }
        }
 
        private int _beginLine = 1;
        /// <summary>
        /// 从第几行开始读数据
        /// </summary>
        public int beginLine
        {
            get { return _beginLine; }
            set
            {
                _beginLine = value;
                OnPropertyChanged("beginLine");
            }
        }
 
        /// <summary>
        /// 转移表
        /// </summary>
        public DataTable transferDataTable { get; set; }
 
        /// <summary>
        /// 抓板板位
        /// </summary>
        public string pickLattice { get; set; }
 
        /// <summary>
        /// 抓板列
        /// </summary>
        public string pickColumn { get; set; }
 
        /// <summary>
        /// 抓板孔位
        /// </summary>
        public string pickWell { get; set; }
 
        /// <summary>
        /// 抓板部位
        /// </summary>
        public string pickPart { get; set; }
 
        /// <summary>
        /// 抓板方向
        /// </summary>
        public string pickDirect { get; set; }
 
        /// <summary>
        /// 放板板位
        /// </summary>
        public string placeLattice { get; set; }
 
        /// <summary>
        /// 放板列
        /// </summary>
        public string placeColumn { get; set; }
 
        /// <summary>
        /// 放板孔位
        /// </summary>
        public string placeWell { get; set; }
 
        /// <summary>
        /// 放板方向
        /// </summary>
        public string placeDirect { get; set; }
 
        
        private int _transportCount = 0;
        /// <summary>
        /// 移动最上层的?层耗材
        /// </summary>
        public int transportCount
        {
            get { return _transportCount; }
            set
            {
                _transportCount = value;
                OnPropertyChanged("transportCount");
            }
        }
        /// <summary>
        /// 移动板位的方式, GripTransportMode
        /// </summary>
        public int transportMode { get; set; } = -1;
    }
}