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