// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995 // // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证 using Admin.NET.Core; using SqlSugar; namespace Admin.NET.Bodk.Genetic.Entities; [SugarTable("bodk_genetic_test_result")] public class GeneticTestResultEntity : EntityBase { public long CustomerId { get; set; } [SugarColumn(IsNullable = true)] public string? Code { get; set; } [SugarColumn(IsNullable = true)] public string? TestType { get; set; } public string Barcode { get; set; } [SugarColumn(IsNullable = true)] public GeneticTestStatus? Status { get; set; } [SugarColumn(IsNullable = true)] public DateTime? GenerationTime { get; set; } [SugarColumn(IsNullable = true)] public DateTime? CollectionTime { get; set; } } public enum GeneticTestStatus { Sampled = 1, Sent, Resampling, Received, Analyzing, ReAnalyzing, UnderReview, UnderReviewComplete, NotPassed, Completed, Terminated, Paused, Failed }