Uat_Study
parent
352864b08c
commit
c8fa42b304
|
@ -984,6 +984,28 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public string OrderMark { get; set; } = string.Empty;
|
public string OrderMark { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 关联父问题
|
||||||
|
/// </summary>
|
||||||
|
public Guid? DependParentId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否关联
|
||||||
|
/// </summary>
|
||||||
|
public IsDepend? IsDepend { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 表格问题类型
|
||||||
|
/// </summary>
|
||||||
|
public TableQuestionType? TableQuestionType { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 问题标识
|
||||||
|
/// </summary>
|
||||||
|
public QuestionMark? QuestionMark { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//public List<TableQuestionDataInfo> TableQuestions { get; set; }
|
//public List<TableQuestionDataInfo> TableQuestions { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -1052,6 +1052,10 @@ namespace IRaCIS.Application.Services
|
||||||
GroupName = string.Empty,
|
GroupName = string.Empty,
|
||||||
Id = x.Id,
|
Id = x.Id,
|
||||||
Type=x.Type,
|
Type=x.Type,
|
||||||
|
TableQuestionType= x.TableQuestionType,
|
||||||
|
DependParentId=x.DependParentId,
|
||||||
|
IsDepend=x.IsDepend,
|
||||||
|
QuestionMark=x.QuestionMark,
|
||||||
TypeValue =x.TypeValue,
|
TypeValue =x.TypeValue,
|
||||||
RelevanceId=x.RelevanceId,
|
RelevanceId=x.RelevanceId,
|
||||||
RelevanceValue=x.RelevanceValue,
|
RelevanceValue=x.RelevanceValue,
|
||||||
|
|
Loading…
Reference in New Issue