修改标准配置字段
parent
20624b9358
commit
6578b610c9
|
@ -614,9 +614,6 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 访视任务
|
||||
/// </summary>
|
||||
|
@ -704,9 +701,6 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// PM阅片跟踪
|
||||
/// </summary>
|
||||
|
@ -749,8 +743,6 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// PM 重阅追踪
|
||||
/// </summary>
|
||||
|
|
|
@ -466,8 +466,13 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
|
||||
|
||||
//是否附加评估
|
||||
public bool IsAdditionalAssessment { get; set; }
|
||||
|
||||
|
||||
//自动 手动生成任务
|
||||
public bool IsAutoCreate { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -804,6 +809,13 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
public class SetCriterionReadingInfoInDto
|
||||
{
|
||||
|
||||
//是否附加评估
|
||||
public bool IsAdditionalAssessment { get; set; }
|
||||
|
||||
|
||||
//自动 手动生成任务
|
||||
public bool IsAutoCreate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目标准ID
|
||||
/// </summary>
|
||||
|
|
|
@ -552,7 +552,8 @@ namespace IRaCIS.Core.Application
|
|||
IsGlobalReading = inDto.IsGlobalReading,
|
||||
IsArbitrationReading = inDto.IsArbitrationReading,
|
||||
IsOncologyReading = inDto.IsOncologyReading,
|
||||
|
||||
IsAdditionalAssessment=inDto.IsAdditionalAssessment,
|
||||
IsAutoCreate=inDto.IsAutoCreate
|
||||
|
||||
});
|
||||
|
||||
|
|
|
@ -233,12 +233,19 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public bool IsMustGlobalReading { get; set; } = false;
|
||||
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// 项目
|
||||
/// </summary>
|
||||
[ForeignKey("TrialId")]
|
||||
//是否附加评估
|
||||
public bool IsAdditionalAssessment { get; set; }
|
||||
|
||||
|
||||
//自动 手动生成任务
|
||||
public bool IsAutoCreate { get; set; }
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// 项目
|
||||
/// </summary>
|
||||
[ForeignKey("TrialId")]
|
||||
[JsonIgnore]
|
||||
public Trial Trial { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue