操控平台后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1 KiB

1 month ago
// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
//
// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
using Admin.NET.Core;
using SqlSugar;
namespace Admin.NET.Bodk.Genetic.Entities.Reports;
[SugarTable("bodk_gene_testing_report")]
public class GeneTestingReportEntity : EntityBase
{
public long CustomerId { get; set; }
public string? Barcode { get; set; }
public string? SampleType { get; set; }
public string? TestingType { get; set; }
public string? TestingMethod { get; set; }
public DateTime? SubmissionTime { get; set; }
public DateTime? ReportTime { get; set; }
public bool? SampleQuality { get; set; }
public bool? DnaExtraction { get; set; }
public bool? Pcr { get; set; }
public bool? TofMs { get; set; }
public bool? GenotypingAnalysis { get; set; }
public bool? GeneticRiskAssessment { get; set; }
public bool? Report { get; set; }
[SugarColumn(IsIgnore = true)] public List<GeneTestingTumorReportEntity>? Tumors { get; set; }
}