This commit is contained in:
he
2024-06-27 14:21:32 +08:00
parent 5c9664ec7d
commit ba8f22f260
2 changed files with 56 additions and 5 deletions
@@ -32,7 +32,19 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsApplyHeavyReading { get; set; } = false;
}
public class GetIRMedicalFeedbackListInDto:PageInput
public class GetNextIRMedicalFeedbackInDto
{
/// <summary>
/// 项目Id
/// </summary>
[NotDefault]
public Guid TrialId { get; set; }
public Guid? TrialReadingCriterionId { get; set; }
}
public class GetIRMedicalFeedbackListInDto:PageInput
{
/// <summary>
/// 项目Id
@@ -78,7 +90,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool? IsInvalid { get; set; }
public Guid? TrialReadingCriterionId { get; set; }
}
/// <summary>
/// 获取不加急的
/// </summary>
public bool IsNotHaveSigned { get; set; } = false;
}
public class GetIRMedicalFeedbackListOutDto
{