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.
65 lines
1.4 KiB
65 lines
1.4 KiB
// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
|
|
//
|
|
// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
|
|
|
|
using Admin.NET.Core;
|
|
|
|
namespace Admin.NET.Bodk.Genetic.Models.Reports;
|
|
|
|
public class AddReportInput
|
|
{
|
|
public long CustomerId { get; set; }
|
|
|
|
public string? Barcode { get; set; }
|
|
|
|
public string? SampleType { get; set; }
|
|
|
|
public string? TestingType { get; set; }
|
|
|
|
public string? TestingMethod { get; set; }
|
|
|
|
public DateTime? SubmissionTime { get; set; }
|
|
|
|
public DateTime? ReportTime { get; set; }
|
|
|
|
public bool? SampleQuality { get; set; }
|
|
|
|
public bool? DnaExtraction { get; set; }
|
|
|
|
public bool? Pcr { get; set; }
|
|
|
|
public bool? TofMs { get; set; }
|
|
|
|
public bool? GenotypingAnalysis { get; set; }
|
|
|
|
public bool? GeneticRiskAssessment { get; set; }
|
|
|
|
public bool? Report { get; set; }
|
|
|
|
public List<AddTumorReportInput> Tumors { get; set; } = [];
|
|
}
|
|
|
|
public class AddTumorReportInput
|
|
{
|
|
public long? Id { get; set; }
|
|
public long TumorId { get; set; }
|
|
|
|
public float RiskScore { get; set; }
|
|
|
|
public int RiskLevel { get; set; }
|
|
|
|
public List<AddTumorLocusReportInput> Loci { get; set; } = [];
|
|
}
|
|
|
|
public class AddTumorLocusReportInput
|
|
{
|
|
public long? Id { get; set; }
|
|
public long LocusId { get; set; }
|
|
|
|
public long RiskId { get; set; }
|
|
}
|
|
|
|
public class UpdateReportInput : AddReportInput
|
|
{
|
|
public long Id { get; set; }
|
|
}
|