添加软删字段DeleteUserId

This commit is contained in:
2022-05-06 09:28:30 +08:00
parent 62ed19ed26
commit b10064aef4
14 changed files with 35 additions and 3 deletions
+2
View File
@@ -58,6 +58,8 @@ namespace IRaCIS.Core.Domain.Models
public bool IsDeleted {get;set;}
public DateTime? DeletedTime { get; set; }
public Guid? DeleteUserId { get; set; }
public bool IsReading { get; set; } = true;
public string BodyPartForEdit { get; set; } = string.Empty;
+2
View File
@@ -102,6 +102,8 @@ namespace IRaCIS.Core.Domain.Models
public DateTime? DeletedTime { get; set; }
public Guid? DeleteUserId { get; set; }
}
}