修改一版
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user