修改一版
parent
04b4310178
commit
dfec75ea00
|
@ -78,13 +78,11 @@ namespace IRaCIS.Application.Services
|
|||
{
|
||||
await _trialRepository.UpdatePartialFromQueryAsync(inDto.TrialId, x => new Trial()
|
||||
{
|
||||
|
||||
ArbitrationRule = inDto.ArbitrationRule,
|
||||
IsArbitrationReading = inDto.IsArbitrationReading,
|
||||
});
|
||||
|
||||
var result = await _trialRepository.SaveChangesAsync();
|
||||
|
||||
return ResponseOutput.Ok(result);
|
||||
}
|
||||
|
||||
|
|
|
@ -128,6 +128,11 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
public int? DigitPlaces { get; set; }
|
||||
|
||||
|
||||
|
||||
//读片任务显示是否顺序
|
||||
public bool IsReadingTaskViewInOrder { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -352,6 +357,12 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 仲裁阅片
|
||||
/// </summary>
|
||||
public bool? IsArbitrationReading { get; set; }
|
||||
|
||||
|
||||
///// <summary>
|
||||
///// 全局阅片
|
||||
///// </summary>
|
||||
|
@ -763,6 +774,11 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
|
||||
|
||||
//读片任务显示是否顺序
|
||||
public bool IsReadingTaskViewInOrder { get; set; }
|
||||
|
||||
|
||||
|
||||
//public string DocumentConfirmSignText { get; set; } = string.Empty;
|
||||
//public string ImageQCSignText { get; set; } = string.Empty;
|
||||
//public string PreliminaryAuditReuploadText { get; set; } = string.Empty;
|
||||
|
|
Loading…
Reference in New Issue