This commit is contained in:
he
2022-10-19 14:28:29 +08:00
parent 72935c89d8
commit 6bfbcd7d2c
5 changed files with 115 additions and 38 deletions
@@ -347,10 +347,6 @@ namespace IRaCIS.Core.Application.Contracts
/// </summary>
public int ImagePlatform { get; set; } = 1;
/// <summary>
/// 全局阅片
/// </summary>
public bool IsGlobalReading { get; set; }
/// <summary>
/// 系统标准ID
@@ -419,7 +415,7 @@ namespace IRaCIS.Core.Application.Contracts
public bool? IsArbitrationReading { get; set; }
public List<Guid> GlobalAssessTypeIds { get; set; }
///// <summary>
@@ -763,6 +759,33 @@ namespace IRaCIS.Core.Application.Contracts
}
public class GetGlobalReadingOutDto
{
public List<Guid> GlobalAssessTypeIds { get; set; }
/// <summary>
/// 全局阅片
/// </summary>
public bool IsGlobalReading { get; set; }
public bool IsSystemCriterion { get; set; }
}
public class SetGlobalReadingInfoInDto
{
[NotDefault]
public Guid TrialReadingCriterionId { get; set; }
public List<Guid> GlobalAssessTypeIds { get; set; }
/// <summary>
/// 全局阅片
/// </summary>
public bool IsGlobalReading { get; set; }
}
public class GetOncologySetInDto
{
public Guid TrialReadingCriterionId { get; set; }