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
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 当前台面与放在上面的耗材关系实体
    /// </summary>
    public class LatticeRSLabware
    {
        /// <summary>
        /// 当前台面的ID
        /// </summary>
        public string lattice_id { get; set; }
 
        public List<LabwareOnLattice> labwareOnLattices { get; set; }
        ///// <summary>
        ///// 当前台面上的耗材ID
        ///// </summary>
        //public string labware_id { get; set; }
 
        ///// <summary>
        ///// 台面上的labware重命名
        ///// </summary>
        //public string labware_sname { get; set; }
        ///// <summary>
        ///// 台面上的labware的barcode
        ///// </summary>
        //public string labware_barcode { get; set; } = "";
 
        ///// <summary>
        ///// 台面上的labware是否有盖子
        ///// </summary>
        //public string labware_withlid { get; set; }
 
        ///// <summary>
        ///// 耗材上可用的Tips孔位
        ///// </summary>
        //public string labware_tipwells { get; set; }
 
        ///// <summary>
        ///// 耗材上已设置的孔内液体数据实体信息
        ///// </summary>
        //public ObservableCollection<PlateWellsLiquidData> plateWellsLiquidData { get; set; }
    }
 
    /// <summary>
    /// 板位上放置的耗材
    /// </summary>
    public class LabwareOnLattice
    {
        /// <summary>
        /// 当前台面上的耗材ID
        /// </summary>
        public string labware_id { get; set; }
 
        /// <summary>
        /// 台面上的labware重命名
        /// </summary>
        public string labware_sname { get; set; }
        /// <summary>
        /// 台面上的labware的barcode
        /// </summary>
        public string labware_barcode { get; set; } = "";
 
        /// <summary>
        /// 台面上的labware是否有盖子
        /// </summary>
        public string labware_withlid { get; set; }
 
        /// <summary>
        /// 耗材上可用的Tips孔位
        /// </summary>
        public string labware_tipwells { get; set; }
 
        /// <summary>
        /// 耗材在板位上第几层,从1开始
        /// </summary>
        public int level { get; set; }
 
        /// <summary>
        /// 耗材上已设置的孔内液体数据实体信息
        /// </summary>
        public ObservableCollection<PlateWellsLiquidData> plateWellsLiquidData { get; set; }
    }
}