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; } } }