禁用时间修改

This commit is contained in:
2022-04-01 10:04:33 +08:00
parent fb2586e5c1
commit a0690552e8
13 changed files with 70 additions and 111 deletions
@@ -33,7 +33,6 @@ namespace IRaCIS.Core.Application.Contracts.DTO
public class EditTrialSiteCommand
{
//Guid id, Guid trialId, string trialSiteCode, string? trialSiteAliasName
[NotDefault]
public Guid TrialId { get; set; }
@@ -13,7 +13,6 @@ namespace IRaCIS.Application.Contracts
public bool IsDeleted { get; set; }
public DateTime? RemoveTime { get; set; }
public Guid? SiteId { get; set; }
public string Phone { get; set; } = String.Empty;
public DateTime UpdateTime { get; set; }
@@ -37,10 +36,14 @@ namespace IRaCIS.Application.Contracts
public class TrialMaintenanceDTO : UserTrialCommand
{
public bool IsDeleted { get; set; }
public DateTime? DeletedTime { get; set; }
public DateTime? RemoveTime { get; set; }
public DateTime? JoinTime { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; } = DateTime.Now;
@@ -117,6 +120,9 @@ namespace IRaCIS.Application.Contracts
public string TrialSiteAliasName { get; set; } = String.Empty;
public bool IsDeleted { get; set; }
public DateTime? DeletedTime { get; set; }
public DateTime UpdateTime { get; set; }
public string Site { get; set; } = String.Empty;