// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995 // // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证 using Admin.NET.Bodk.Genetic.Entities; using Admin.NET.Core; namespace Admin.NET.Bodk.Genetic.Models; public class GeneticTestResultQueryInput : BasePageInput { public long? CustomerId { get; set; } public string? Code { get; set; } public string? Barcode { get; set; } public GeneticTestStatus? Status { get; set; } } public class GeneticTestResultInput { public long CustomerId { get; set; } public string Code { get; set; } public string Barcode { get; set; } public string TestType { get; set; } public GeneticTestStatus Status { get; set; } public DateTime GenerationTime { get; set; } public DateTime CollectionTime { get; set; } public List? Items { get; set; } } public class GeneticTestResultUpdateInput : BaseIdInput { public long CustomerId { get; set; } public string Code { get; set; } public string Barcode { get; set; } public string TestType { get; set; } public GeneticTestStatus Status { get; set; } public DateTime GenerationTime { get; set; } public DateTime CollectionTime { get; set; } public List? Items { get; set; } } public class GeneticTestResultOutput : GeneticTestResultEntity { public List? Items { get; set; } }