songjun
2024-09-04 cc908053e0b5075fbfd27350b6da4b39bca9e550
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PalGain.Core;
 
namespace sbcLabSystem.Data.Domain.Backstage
{
    public class StandAnswerInfo : BaseEntity
    {
        public QCDistribution QCDistInfo { get; set; }
        public int ProjectId { get; set; }
        public string AnswerData { get; set; }
        public bool ABO_RhD_FirstPatient { get; set; }
        public bool CrossMatch_W_FirstPatient { get; set; }
        public bool AntibodyScreening_FirstPatient { get; set; }
        public bool AntibodyIdentification_FirstPatient { get; set; }
        public DateTime? CreateDate { get; set; }
        public int AdminID { get; set; }
        public DateTime? UpdateDate { get; set; }
        public bool IsRead { get; set; }
        public int ABO_RhD_SecPatient { get; set; } 
        public int ABO_RhD_ThdPatient { get; set; }
        public int CrossMatch_W_SecPatient { get; set; }
        public int CrossMatch_W_ThdPatient { get; set; }
        public int CrossMatch_Y_FirstPatient { get; set; }
        public int CrossMatch_Y_SecPatient { get; set; }
        public int CrossMatch_Y_ThdPatient { get; set; }
        public int CrossMatch_Z_FirstPatient { get; set; }
        public int CrossMatch_Z_SecPatient { get; set; }
        public int CrossMatch_Z_ThdPatient { get; set; }
        public int AntibodyScreening_SecPatient { get; set; }
        public int AntibodyScreening_ThdPatient { get; set; }
        public int AntibodyIdentification_SecPatient { get; set; }
        public int AntibodyIdentification_ThdPatient { get; set; }
    }
}