Uat_Study
he 2022-09-15 15:30:01 +08:00
parent 65d23a4d91
commit e2c58ac74c
4 changed files with 23 additions and 1 deletions

View File

@ -353,6 +353,10 @@ namespace IRaCIS.Core.Application.Contracts
public bool IsReadingTaskViewInOrder { get; set; } = true;
/// <summary>
/// 阅片工具
/// </summary>
public ReadingTool? ReadingTool { get; set; }
/// <summary>
/// 仲裁规则/对象
@ -760,6 +764,11 @@ namespace IRaCIS.Core.Application.Contracts
/// </summary>
public Guid TrialId { get; set; }
/// <summary>
/// 阅片工具
/// </summary>
public ReadingTool? ReadingTool { get; set; }
/// <summary>
/// 阅片平台

View File

@ -316,6 +316,7 @@ namespace IRaCIS.Core.Application
{
await _trialRepository.UpdatePartialFromQueryAsync(inDto.TrialId, x => new Trial()
{
ReadingTool=inDto.ReadingTool,
//DigitPlaces=inDto.DigitPlaces,
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,

View File

@ -215,6 +215,13 @@ namespace IRaCIS.Core.Domain.Share
Allocated = 2,
}
public enum ReadingTool
{
Dicom=0,
NoDicom=1,
}
public enum ArbitrationRule
{
//默认值 看是否需要项目初始化时就给默认值 1 或者2

View File

@ -396,6 +396,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public DateTime? ReadingInfoSignTime { get; set; }
/// <summary>
/// 敦튬묏야
/// </summary>
public ReadingTool? ReadingTool { get; set; }
//public Guid? ReviewTypeId { get; set; } = Guid.Empty;
//[ForeignKey("ReviewTypeId")]