Uat_Study
parent
ab2899e6e4
commit
fbca7f17f8
|
@ -1110,6 +1110,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public string DictionaryCode { get; set; } = string.Empty;
|
public string DictionaryCode { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 问题类型
|
||||||
|
/// </summary>
|
||||||
|
public TableQuestionType? QuestionGenre { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Type
|
/// Type
|
||||||
|
@ -1398,6 +1402,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DictionaryCode { get; set; }
|
public string DictionaryCode { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 问题类型
|
||||||
|
/// </summary>
|
||||||
|
public TableQuestionType? QuestionGenre { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 项目标准Id
|
/// 项目标准Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -1785,10 +1785,12 @@ namespace IRaCIS.Application.Services
|
||||||
GroupName = string.Empty,
|
GroupName = string.Empty,
|
||||||
Id = x.Id,
|
Id = x.Id,
|
||||||
Type = x.Type,
|
Type = x.Type,
|
||||||
|
DictionaryCode=x.DictionaryCode,
|
||||||
TableQuestionType = x.TableQuestionType,
|
TableQuestionType = x.TableQuestionType,
|
||||||
DependParentId = x.DependParentId,
|
DependParentId = x.DependParentId,
|
||||||
IsDepend = x.IsDepend,
|
IsDepend = x.IsDepend,
|
||||||
QuestionMark = x.QuestionMark,
|
QuestionMark = x.QuestionMark,
|
||||||
|
QuestionGenre=x.QuestionGenre,
|
||||||
TypeValue = x.TypeValue,
|
TypeValue = x.TypeValue,
|
||||||
RelevanceId = x.RelevanceId,
|
RelevanceId = x.RelevanceId,
|
||||||
IsRequired = x.IsRequired,
|
IsRequired = x.IsRequired,
|
||||||
|
@ -1805,8 +1807,10 @@ namespace IRaCIS.Application.Services
|
||||||
GroupName = string.Empty,
|
GroupName = string.Empty,
|
||||||
Id = x.Id,
|
Id = x.Id,
|
||||||
Type = x.Type,
|
Type = x.Type,
|
||||||
|
QuestionGenre=x.QuestionGenre,
|
||||||
TableQuestionType = x.TableQuestionType,
|
TableQuestionType = x.TableQuestionType,
|
||||||
DependParentId = x.DependParentId,
|
DependParentId = x.DependParentId,
|
||||||
|
DictionaryCode = x.DictionaryCode,
|
||||||
IsDepend = x.IsDepend,
|
IsDepend = x.IsDepend,
|
||||||
QuestionMark = x.QuestionMark,
|
QuestionMark = x.QuestionMark,
|
||||||
TypeValue = x.TypeValue,
|
TypeValue = x.TypeValue,
|
||||||
|
|
Loading…
Reference in New Issue