Uat_Study
parent
65d23a4d91
commit
e2c58ac74c
|
@ -352,7 +352,11 @@ 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>
|
||||
/// 阅片平台
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -215,6 +215,13 @@ namespace IRaCIS.Core.Domain.Share
|
|||
Allocated = 2,
|
||||
}
|
||||
|
||||
public enum ReadingTool
|
||||
{
|
||||
Dicom=0,
|
||||
|
||||
NoDicom=1,
|
||||
}
|
||||
|
||||
public enum ArbitrationRule
|
||||
{
|
||||
//默认值 看是否需要项目初始化时就给默认值 1 或者2
|
||||
|
|
|
@ -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")]
|
||||
|
|
Loading…
Reference in New Issue