This commit is contained in:
2022-04-28 11:50:39 +08:00
parent 329b028e37
commit d974c32050
5 changed files with 16 additions and 10 deletions
@@ -157,13 +157,13 @@ namespace IRaCIS.Core.Application.Contracts.DTO
public DateTime? LatestMsgTime { get; set; }
public string LatestReplyUser { get; set; } = String.Empty;
public string LatestReplyUserName { get; set; } = String.Empty;
public DateTime? ClosedTime { get; set; }
public bool IsClosed { get; set; }
public DateTime? ReUploadedTime { get; set; }
public string CreateUser { get; set; } = String.Empty;
public string CreateUserName { get; set; } = String.Empty;
public DateTime CreateTime { get; set; }
public bool IsOverTime => IsClosed ? ClosedTime > DeadlineTime : DateTime.Now > DeadlineTime;
@@ -454,7 +454,8 @@ namespace IRaCIS.Core.Application.Contracts.DTO
public Guid CreateUserId { get; set; }
public string CreateUser { get; set; } = String.Empty;
public string CreateUserName { get; set; } = String.Empty;
public string CreateUserFullName { get; set; } = String.Empty;
public bool IsCurrentUser { get; set; }