修改用户临时提交
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-12-25 11:25:45 +08:00
parent 26cba15742
commit a6080b76b1
17 changed files with 297 additions and 152 deletions
@@ -88,7 +88,7 @@ namespace IRaCIS.Application.Contracts
[ExcelFormat("yyyy-MM-dd")]
public DateTime? RemoveTime { get; set; }
public string RemoveTimeStr=> RemoveTime?.ToString("yyyy-MM-dd") ?? string.Empty;
public string RemoveTimeStr => RemoveTime?.ToString("yyyy-MM-dd") ?? string.Empty;
//[ExporterHeader(Format = "yyyy-mm-DD")]
@@ -122,6 +122,75 @@ namespace IRaCIS.Application.Contracts
}
public class TrialIdentityUserDto
{
public Guid Id { get; set; }
public Guid TrialId { get; set; }
public Guid IdentityUserId { get; set; }
public string Phone { get; set; } = String.Empty;
public string EMail { get; set; } = string.Empty;
public string OrganizationName { get; set; } = String.Empty;
public string UserName { get; set; } = String.Empty;
public string FullName { get; set; } = String.Empty;
public bool IsDeleted { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
[ExcelFormat("yyyy-MM-dd")]
public DateTime? RemoveTime { get; set; }
[ExcelFormat("yyyy-MM-dd")]
public DateTime? JoinTime { get; set; }
public string JoinTimeStr => JoinTime?.ToString("yyyy-MM-dd") ?? string.Empty;
public string RemoveTimeStr => RemoveTime?.ToString("yyyy-MM-dd") ?? string.Empty;
public List<TrialIdentityUserRoleDto> TrialUserRoleList { get; set; }
}
public class TrialUserRoleScreeningDto
{
public Guid Id { get; set; }
public Guid IdentityUserId { get; set; }
public string Phone { get; set; } = String.Empty;
public string EMail { get; set; } = string.Empty;
public string OrganizationName { get; set; } = String.Empty;
public string UserName { get; set; } = String.Empty;
public string FullName { get; set; } = String.Empty;
public bool IsSelect { get; set; }
}
public class TrialIdentityUserRoleDto
{
public Guid Id { get; set; }
public bool IsDeleted { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}
public class TrialCRCUploadImageList_Export : ExcelExportInfo
{
@@ -150,19 +219,19 @@ namespace IRaCIS.Application.Contracts
/// <summary>
/// 数据
/// </summary>
public object Data { get; set; }
public object Data { get; set; }
}
public class ExportTemplateServiceDto : ExportTemplateAsyncDto
{
public IRepository<CommonDocument> commonDocumentRepository { get; set; }
public IWebHostEnvironment hostEnvironment { get; set; }
public IWebHostEnvironment hostEnvironment { get; set; }
public bool IsEnglish { get; set; }
}
public class VisitJudgeExportInfo: ExcelExportInfo
public class VisitJudgeExportInfo : ExcelExportInfo
{
public int VisitCount { get; set; }
@@ -409,8 +478,13 @@ namespace IRaCIS.Application.Contracts
public class TrialUserAddCommand
{
[NotDefault]
public Guid IdentityUserId { get; set; }
[NotDefault]
public Guid UserId { get; set; }
[NotDefault]
public Guid TrialId { get; set; }