This commit is contained in:
he
2024-10-22 11:15:26 +08:00
parent 15701ef073
commit 2f1a9af5bd
9 changed files with 205 additions and 81 deletions
@@ -247,6 +247,8 @@ namespace IRaCIS.Application.Contracts
public ResearchPublicationDTO ResearchPublicationView { get; set; }
public TrialExperienceModel TrialExperienceView { get; set; }
public ResumeConfirmDTO AuditView { get; set; }
public UpdateGneralSituationDto SummarizeInfo { get; set; }
public IEnumerable<AttachmentDTO> AttachmentList { get; set; }
public List<SowDTO> SowList { get; set; }
@@ -311,6 +313,22 @@ namespace IRaCIS.Application.Contracts
}
public class UpdateGneralSituationDto
{
public Guid Id { get; set; }
/// <summary>
/// 概述
/// </summary>
public string Summarize { get; set; } = string.Empty;
/// <summary>
/// 概述
/// </summary>
public string SummarizeEn { get; set; } = string.Empty;
}
public class BasicInfoAndEmploymentDto: DoctorBasicInfoCommand
{
//部门
@@ -331,16 +349,6 @@ namespace IRaCIS.Application.Contracts
public Guid? PhysicianId { get; set; }
public string Physician { get; set; } = string.Empty;
public string PhysicianCN { get; set; } = string.Empty;
/// <summary>
/// 工作兼职
/// </summary>
public string WorkPartTime { get; set; } = string.Empty;
/// <summary>
/// 工作兼职En
/// </summary>
public string WorkPartTimeEn { get; set; } = string.Empty;
}
public class DoctorBasicInfoCommand : DoctorBasicInfo
{