Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -276,6 +276,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public string CalculateQuestions { get; set; } = "[]";
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 默认值
|
||||
/// </summary>
|
||||
public string DefaultValue { get; set; } = string.Empty;
|
||||
|
||||
[NotMapped]
|
||||
public List<CalculateInfo> CalculateQuestionList
|
||||
{
|
||||
@@ -474,6 +480,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 默认值
|
||||
/// </summary>
|
||||
public string DefaultValue { get; set; } = string.Empty;
|
||||
|
||||
public List<string> RelevanceValueList { get; set; } = new List<string>();
|
||||
}
|
||||
|
||||
@@ -812,6 +812,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
public ReadingVersion? ReadingVersionEnum { get; set; }
|
||||
|
||||
|
||||
public ReadingTool? ReadingTool { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 阅片工具
|
||||
/// </summary>
|
||||
public List<string> ReadingToolList { get; set; } = new List<string>();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -393,6 +393,12 @@ namespace IRaCIS.Core.Application.Service.RC
|
||||
|
||||
indto.ReadingVersionEnum=(ReadingVersion)maxDic;
|
||||
}
|
||||
|
||||
indto.ReadingTool = ReadingTool.Dicom;
|
||||
indto.ReadingToolList = new List<string>()
|
||||
{
|
||||
"Length", "Bidirectional", "RectangleROI", "ArrowAnnotate", "CircleROI"
|
||||
};
|
||||
var entity = await _readingQuestionCriterionTrialRepository.InsertOrUpdateAsync(indto, true);
|
||||
return ResponseOutput.Ok(entity.Id.ToString());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user