songjun
2025-09-15 15e82c0dd4200a332b30e2fcd458ad84e2e3d428
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
using PalGain.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace sbcLabSystem.Data.Domain.Backstage
{
    public class Resultspercentage : BaseEntity
    {
        public int QCDistributionId { get; set; }
        public int QcDistributionRegisterId { get; set; }
        //提交时间
        public DateTime? SubmitTime { get; set; }
        public string Abo1 { get; set; }
        public string Abo2 { get; set; }
        public string Abo3 { get; set; }
        public string RH1 { get; set; }
        public string RH2 { get; set; }
        public string RH3 { get; set; }
        public string ZhiKang1 { get; set; }
        public string ZhiKang2 { get; set; }
        public string ZhiKang3 { get; set; }
 
        public string KangTiFilter1 { get; set; }
        public string KangTiFilter2 { get; set; }
        public string KangTiFilter3 { get; set; }
        public string KangTiIdentity1 { get; set; }
        public string KangTiIdentity2 { get; set; }
        public string KangTiIdentity3 { get; set; }
 
        public string JiaoChaPeiXing1W { get; set; }
        public string JiaoChaPeiXing1Y { get; set; }
        public string JiaoChaPeiXing1Z { get; set; }
        public string JiaoChaPeiXing2W { get; set; }
        public string JiaoChaPeiXing2Y { get; set; }
        public string JiaoChaPeiXing2Z { get; set; }
        public string JiaoChaPeiXing3W { get; set; }
        public string JiaoChaPeiXing3Y { get; set; }
        public string JiaoChaPeiXing3Z { get; set; }
 
        public string RevDate { get; set; }//收到日期
 
 
 
        public string TestDate { get; set; }//测试日期
        public string SampleQuality { get; set; }//样本质量
 
        public string FinishDate { get; set; }//完成时间
 
        
        public string laboratoryMethod { get; set; }//实验室方法
        public string Reagents { get; set; }//6.  试剂说明
        //11.  试剂红细胞数量
        public string CellNumber { get; set; }
 
        public double ABO_Score { get; set; }
        public double RH_Score { get; set; }
        public double KangtiFilter_Score { get; set; }
        public double KangtiIdentity_Score { get; set; }
        public double JiaoChaPeiXing_Score { get; set; }
        public double SumScore { get; set; }
        public double ZValueScore { get; set; }
        public double SatisfiedScore { get; set; }
    }
}