外部用户修改

This commit is contained in:
2022-05-18 14:04:36 +08:00
parent 3009fb422f
commit 9d02656f59
6 changed files with 393 additions and 46 deletions
@@ -75,11 +75,7 @@ namespace IRaCIS.Core.Domain.Models
[Required]
public string LastName { get; set; }
/// <summary>
/// 邀请状态
/// </summary>
[Required]
public TrialExternalUserStateEnum InviteState { get; set; } = TrialExternalUserStateEnum.WaitSent;
///// <summary>
///// 是否存在系统用户表中
@@ -98,15 +94,23 @@ namespace IRaCIS.Core.Domain.Models
public DateTime? ExpireTime { get; set; }
public bool? IsJoin { get; set; }
public bool? IsJoin { get; set; }
public DateTime? ExpireTime { get; set; }
public DateTime? ConfirmTime { get; set; }
public string RejectReason { get; set; }
/// <summary>
/// 邀请状态
/// </summary>
[Required]
public TrialExternalUserStateEnum InviteState { get; set; } = TrialExternalUserStateEnum.WaitSent;
}
}