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.
62 lines
1.5 KiB
62 lines
1.5 KiB
4 months ago
|
// 大名科技(天津)有限公司版权所有 电话: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<GeneticItemInput>? 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<GeneticItemInput>? Items { get; set; }
|
||
|
}
|
||
|
|
||
|
public class GeneticTestResultOutput : GeneticTestResultEntity
|
||
|
{
|
||
|
public List<GeneticItemOutput>? Items { get; set; }
|
||
|
}
|