代码提交
parent
4f978863e4
commit
e5f2d1cde9
|
@ -360,10 +360,12 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsUrgent { get; set; } = false;
|
public bool IsUrgent { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
public bool IsSystemSetOncology { get; set; } = false;
|
||||||
/// 阅片平台
|
|
||||||
/// </summary>
|
/// <summary>
|
||||||
public int ImagePlatform { get; set; } = 1;
|
/// 阅片平台
|
||||||
|
/// </summary>
|
||||||
|
public int ImagePlatform { get; set; } = 1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 修约小数点
|
/// 修约小数点
|
||||||
|
|
|
@ -321,7 +321,8 @@ namespace IRaCIS.Core.Application
|
||||||
await _readingQuestionCriterionTrialRepository.BatchUpdateNoTrackingAsync(x => x.Id == inDto.TrialReadingCriterionId, x => new ReadingQuestionCriterionTrial()
|
await _readingQuestionCriterionTrialRepository.BatchUpdateNoTrackingAsync(x => x.Id == inDto.TrialReadingCriterionId, x => new ReadingQuestionCriterionTrial()
|
||||||
{
|
{
|
||||||
IsOncologyReading = systemCriterion.IsOncologyReading,
|
IsOncologyReading = systemCriterion.IsOncologyReading,
|
||||||
IseCRFShowInDicomReading = systemCriterion.IseCRFShowInDicomReading,
|
IsSystemSetOncology = systemCriterion.IsOncologyReading,
|
||||||
|
IseCRFShowInDicomReading = systemCriterion.IseCRFShowInDicomReading,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -201,6 +201,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsOncologyReading { get; set; }
|
public bool IsOncologyReading { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否系统设置了 肿瘤学
|
||||||
|
/// </summary>
|
||||||
|
public bool IsSystemSetOncology { get; set; } = true;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 任务展示访视 读片任务显示是否顺序
|
/// 任务展示访视 读片任务显示是否顺序
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue