This commit is contained in:
he
2022-07-08 11:19:45 +08:00
parent fde57c12cb
commit ec5bf392af
7 changed files with 99 additions and 2 deletions
@@ -1,4 +1,5 @@
using System.ComponentModel.DataAnnotations;
using IRaCIS.Core.Domain.Share;
using IRaCIS.Core.Infrastructure.Extention;
namespace IRaCIS.Application.Contracts
@@ -139,7 +140,13 @@ namespace IRaCIS.Application.Contracts
[Required(ErrorMessage = "需要有效的医生列表")]
public List<Guid> NeedCalculateReviewers { get; set; } = new List<Guid>();
}
public class SetEnrollReadingCategoryInDto
{
[NotDefault]
public Guid EnrollId { get; set; }
public List<ReadingCategory> ReadingCategorys { get; set; }
}
public class WorkLoadDoctorQueryDTO : PageInput
{
public Guid TrialId { get; set; } = Guid.Empty;
@@ -218,6 +225,7 @@ namespace IRaCIS.Application.Contracts
public class WorkLoadAndAgreementDTO : WorkLoadAndTrainingDTO
{
public Guid EnrollId { get; set; }
public DateTime? OutEnrollTime { get; set; }
public Guid AgreementId { get; set; }
@@ -226,6 +234,9 @@ namespace IRaCIS.Application.Contracts
public string? AgreementFileName => AgreementPath?.Split('/').Last();
public string AgreementFullPath => AgreementPath;
public List<ReadingCategory> ReadingCategorys { get; set; }
}