// 大名科技(天津)有限公司版权所有 电话: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; } public string Code { get; set; } public string TestType { get; set; } public string Barcode { get; set; } public GeneticTestStatus Status { get; set; } public DateTime GenerationTime { get; set; } public DateTime CollectionTime { get; set; } } public enum GeneticTestStatus { Sampled = 1, Sent, Resampling, Received, Analyzing, ReAnalyzing, UnderReview, UnderReviewComplete, NotPassed, Completed, Terminated, Paused, Failed }