修改
This commit is contained in:
@@ -265,6 +265,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
public Guid RowId { get; set; }
|
||||
}
|
||||
|
||||
//public class ChangeCalculationAnswerInDto
|
||||
//{
|
||||
// public Guid VisitTaskId { get; set; }
|
||||
|
||||
// public
|
||||
//}
|
||||
|
||||
public class ReadClinicalDataInDto
|
||||
{
|
||||
[NotDefault]
|
||||
|
||||
@@ -1157,6 +1157,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public string QuestionName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 字典code
|
||||
/// </summary>
|
||||
public string DictionaryCode { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 问题类型
|
||||
/// </summary>
|
||||
public TableQuestionType? QuestionGenre { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 类型值
|
||||
/// </summary>
|
||||
|
||||
@@ -245,7 +245,9 @@ namespace IRaCIS.Application.Services
|
||||
.Select(x => new CriterionOtherQuestionOutDto()
|
||||
{
|
||||
QuestionId = x.Id,
|
||||
QuestionName = x.QuestionName,
|
||||
DictionaryCode=x.DictionaryCode,
|
||||
QuestionGenre=x.QuestionGenre,
|
||||
QuestionName = x.QuestionName.LanguageName(x.QuestionEnName,_userInfo.IsEn_Us),
|
||||
TypeValue = x.TypeValue,
|
||||
GroupName = x.GroupName,
|
||||
}).ToListAsync();
|
||||
@@ -551,6 +553,8 @@ namespace IRaCIS.Application.Services
|
||||
.Select(x => new CriterionOtherQuestionOutDto()
|
||||
{
|
||||
QuestionId = x.Id,
|
||||
DictionaryCode=x.DictionaryCode,
|
||||
QuestionGenre=x.QuestionGenre,
|
||||
QuestionName = x.QuestionName.LanguageName(x.QuestionEnName, _userInfo.IsEn_Us),
|
||||
TypeValue = x.TypeValue,
|
||||
GroupName = x.GroupName,
|
||||
|
||||
@@ -120,6 +120,12 @@ namespace IRaCIS.Application.Services
|
||||
this._trialEmailNoticeConfigService = trialEmailNoticeConfigService;
|
||||
}
|
||||
|
||||
|
||||
public async Task ChangeCalculationAnswer()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 阅读临床数据
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user