操控平台后端代码
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.

48 lines
1.1 KiB

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