人员导出 加条件修改

This commit is contained in:
2022-04-11 13:37:49 +08:00
parent 74dcd12285
commit 1844a15879
8 changed files with 180 additions and 123 deletions
@@ -22,6 +22,19 @@ namespace IRaCIS.Core.Application.Contracts.DTO
}
public class SiteCRCExportQueryDTO
{
public Guid TrialId { get; set; } = Guid.Empty;
public string SiteName { get; set; } = String.Empty;
public string TrialSiteAliasName { get; set; } = String.Empty;
public bool? IsDeleted { get; set; }
public string TrialSiteCode { get; set; } = String.Empty;
public string UserKeyInfo { get; set; } = String.Empty;
}
public class TrialSiteCommand
{
public Guid TrialId { get; set; }
@@ -211,13 +211,10 @@ namespace IRaCIS.Application.Contracts
public class TrialMaintenanceQuery : PageInput
public class TrialMaintenanceExportQuery
{
public Guid TrialId { get; set; } = Guid.Empty;
public string UserRealName { get; set; } = string.Empty;
//public string UserType { get; set; } = string.Empty;
public Guid? UserTypeId { get; set; }
@@ -226,11 +223,20 @@ namespace IRaCIS.Application.Contracts
public string OrganizationName { get; set; } = String.Empty;
public bool? IsDeleted { get; set; }
}
//public DateTime? RemoveTime { get; set; }
public class TrialMaintenanceQuery : PageInput
{
public Guid TrialId { get; set; } = Guid.Empty;
public string UserRealName { get; set; } = string.Empty;
//public DateTime? JoinTime { get; set; }
public Guid? UserTypeId { get; set; }
public string UserName { get; set; } = string.Empty;
public string OrganizationName { get; set; } = String.Empty;
public bool? IsDeleted { get; set; }
}