76 lines
2.0 KiB
C#
76 lines
2.0 KiB
C#
using System;
|
|
using IRaCIS.Core.Infrastructure.Extention;
|
|
using IRaCIS.Core.Domain.Share;
|
|
|
|
namespace IRaCIS.Core.Application.Contracts.DTO
|
|
{
|
|
|
|
|
|
public class SiteCrcQueryDTO : PageInput
|
|
{
|
|
public Guid TrialId { get; set; } = Guid.Empty;
|
|
public string UserRealName { get; set; } = String.Empty;
|
|
public string SiteName { get; set; } = String.Empty;
|
|
public string TrialSiteAliasName { get; set; } = String.Empty;
|
|
|
|
}
|
|
|
|
public class TrialSiteCommand
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
public Guid SiteId { get; set; }
|
|
|
|
public string SiteName { get; set; }
|
|
|
|
}
|
|
|
|
public class AssginSiteCRCCommand
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
public Guid SiteId { get; set; }
|
|
public Guid UserId { get; set; }
|
|
|
|
public string UserRealName { get; set; } = String.Empty;
|
|
|
|
}
|
|
|
|
public class AssginSiteCRCListDTO:AssginSiteCRCCommand
|
|
{
|
|
public Guid UserTypeId { get; set; }
|
|
public string UserType { get; set; } = String.Empty;
|
|
public UserTypeEnum UserTypeEnum { get; set; }
|
|
public string OrganizationName { get; set; } = String.Empty;
|
|
//public string UserRealName { get; set; }
|
|
public string UserName { get; set; } = String.Empty;
|
|
public DateTime UpdateTime { get; set; } = DateTime.Now;
|
|
|
|
public bool IsSelect { get; set; }
|
|
}
|
|
|
|
|
|
public class TrialSiteQuery : PageInput
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
|
|
public string SiteName { get; set; } = String.Empty;
|
|
|
|
}
|
|
|
|
public class TrialSiteScreeningDTO
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string SiteName { get; set; } = String.Empty;
|
|
public string SiteCode { get; set; } = String.Empty;
|
|
public string City { get; set; } = String.Empty;
|
|
public string Country { get; set; } = String.Empty;
|
|
public Guid HospitalId { get; set; } = Guid.Empty;
|
|
|
|
|
|
public string HospitalName { get; set; } = String.Empty;
|
|
|
|
public bool IsSelect { get; set; }
|
|
}
|
|
|
|
|
|
|
|
} |