Test.EIImageViewer
he 2023-01-03 14:10:42 +08:00
parent b055365f18
commit b4ffae867b
4 changed files with 28 additions and 1 deletions

View File

@ -265,6 +265,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid RowId { get; set; } public Guid RowId { get; set; }
} }
//public class ChangeCalculationAnswerInDto
//{
// public Guid VisitTaskId { get; set; }
// public
//}
public class ReadClinicalDataInDto public class ReadClinicalDataInDto
{ {
[NotDefault] [NotDefault]

View File

@ -1157,6 +1157,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public string QuestionName { get; set; } public string QuestionName { get; set; }
/// <summary>
/// 字典code
/// </summary>
public string DictionaryCode { get; set; } = string.Empty;
/// <summary>
/// 问题类型
/// </summary>
public TableQuestionType? QuestionGenre { get; set; }
/// <summary> /// <summary>
/// 类型值 /// 类型值
/// </summary> /// </summary>

View File

@ -245,7 +245,9 @@ namespace IRaCIS.Application.Services
.Select(x => new CriterionOtherQuestionOutDto() .Select(x => new CriterionOtherQuestionOutDto()
{ {
QuestionId = x.Id, QuestionId = x.Id,
QuestionName = x.QuestionName, DictionaryCode=x.DictionaryCode,
QuestionGenre=x.QuestionGenre,
QuestionName = x.QuestionName.LanguageName(x.QuestionEnName,_userInfo.IsEn_Us),
TypeValue = x.TypeValue, TypeValue = x.TypeValue,
GroupName = x.GroupName, GroupName = x.GroupName,
}).ToListAsync(); }).ToListAsync();
@ -551,6 +553,8 @@ namespace IRaCIS.Application.Services
.Select(x => new CriterionOtherQuestionOutDto() .Select(x => new CriterionOtherQuestionOutDto()
{ {
QuestionId = x.Id, QuestionId = x.Id,
DictionaryCode=x.DictionaryCode,
QuestionGenre=x.QuestionGenre,
QuestionName = x.QuestionName.LanguageName(x.QuestionEnName, _userInfo.IsEn_Us), QuestionName = x.QuestionName.LanguageName(x.QuestionEnName, _userInfo.IsEn_Us),
TypeValue = x.TypeValue, TypeValue = x.TypeValue,
GroupName = x.GroupName, GroupName = x.GroupName,

View File

@ -120,6 +120,12 @@ namespace IRaCIS.Application.Services
this._trialEmailNoticeConfigService = trialEmailNoticeConfigService; this._trialEmailNoticeConfigService = trialEmailNoticeConfigService;
} }
public async Task ChangeCalculationAnswer()
{
}
/// <summary> /// <summary>
/// 阅读临床数据 /// 阅读临床数据
/// </summary> /// </summary>