修改一版
parent
0af295a899
commit
14f8093529
|
@ -36,6 +36,21 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
public int RowIndex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public TableQuestionType? QuestionGenre { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public TableQuestionType? TableQuestionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 字典code
|
||||
/// </summary>
|
||||
public string DictionaryCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
|
|
|
@ -356,6 +356,8 @@ namespace IRaCIS.Application.Services
|
|||
IsShowInDicom = x.IsShowInDicom,
|
||||
Type = x.Type,
|
||||
QuestionType=x.QuestionType,
|
||||
QuestionGenre=x.QuestionGenre,
|
||||
DictionaryCode =x.DictionaryCode,
|
||||
TypeValue = x.TypeValue,
|
||||
QuestionName = x.QuestionName,
|
||||
ShowOrder = x.ShowOrder,
|
||||
|
@ -371,6 +373,9 @@ namespace IRaCIS.Application.Services
|
|||
QuestionId = x.Id,
|
||||
IsShowInDicom = x.IsShowInDicom,
|
||||
QuestionName = x.QuestionName,
|
||||
|
||||
QuestionGenre = x.QuestionGenre,
|
||||
DictionaryCode = x.DictionaryCode,
|
||||
Type = x.Type,
|
||||
QuestionType=x.QuestionType,
|
||||
TypeValue = x.TypeValue,
|
||||
|
@ -416,6 +421,8 @@ namespace IRaCIS.Application.Services
|
|||
QuestionId = x.ReadingQuestionId,
|
||||
TableQuestionId = x.Id,
|
||||
Type = x.Type,
|
||||
TableQuestionType = x.TableQuestionType,
|
||||
DictionaryCode = x.DictionaryCode,
|
||||
QuestionMark = x.QuestionMark,
|
||||
TypeValue = x.TypeValue,
|
||||
RowIndex = row.RowIndex,
|
||||
|
|
Loading…
Reference in New Issue