修改
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2025-03-14 13:29:01 +08:00
parent 7ce2386aea
commit f9c2ac030a
4 changed files with 57 additions and 1 deletions
@@ -24,6 +24,22 @@
public bool IsAuthorizedView { get; set; }
}
public class GetTrialDoctorSelectInDto
{
public Guid TrialId { get; set; }
}
public class GetTrialDoctorListOutDto
{
public Guid Id { get; set; }
public string BlindName { get; set; } = string.Empty;
public string BlindNameCN { get; set; } = string.Empty;
public string ChineseName { get; set; } = string.Empty;
public string FirstName { get; set; } = string.Empty;
public string FullName => LastName + " / " + FirstName;
public string LastName { get; set; } = string.Empty;
}
public class GetTrialAttachmentsInDto:PageInput
{