修改一版

This commit is contained in:
he
2022-08-04 17:47:50 +08:00
parent ef72b3bfa1
commit 875e1e1c7b
2 changed files with 85 additions and 3 deletions
@@ -282,6 +282,37 @@ namespace IRaCIS.Core.Application.Contracts
//public bool? IsClosed { get; set; }
}
public class QCQuestionAnswer
{
public Guid Id { get; set; }
public string QuestionName { get; set; } = String.Empty;
public bool IsRequired { get; set; }
public string Type { get; set; } = String.Empty;
public string Answer { get; set; } = String.Empty;
public string ParentTriggerValue { get; set; }
public Guid? ParentId { get; set; }
public string TypeValue { get; set; } = String.Empty;
public int ShowOrder { get; set; }
public int? ParentShowOrder { get; set; }
public List<QCQuestionAnswer> Childrens = new List<QCQuestionAnswer>();
}
public class GetQCQuestionAnswerInDto
{
public Guid SubjectVisit { get; set; }
public Guid TrialId { get; set; }
public TrialQCProcess QCProcessEnum { get; set; }
// 1代表第一个人QC数据 2 代表第二个人QC数据
public CurrentQC CurrentQCEnum { get; set; }
}
public class ForwardQuery : PageInput
{