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