This commit is contained in:
he
2022-08-04 15:21:15 +08:00
parent a39052d750
commit 0957d0b1a0
4 changed files with 98 additions and 14 deletions
@@ -7,6 +7,37 @@ using System;
using System.Collections.Generic;
namespace IRaCIS.Core.Application.Contracts
{
/// <summary>
///
/// </summary>
public class QCQuestionViewInDto
{
public Guid? TrialId { get; set; }
}
public class QCQuestionView
{
public Guid Id { get; set; }
public string QuestionName { get; set; } = String.Empty;
public bool IsRequired { get; set; }
public bool IsEnable { get; set; }
public string Type { 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 Guid CreateUserId { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
public Guid UpdateUserId { get; set; }
public List<QCQuestionView> ChildList=new List<QCQuestionView>();
}
/// <summary> QCQuestionConfigureView 列表视图模型 </summary>
public class QCQuestionConfigureView
{