修改IR 页面设置 软删除和不读片

This commit is contained in:
2022-11-29 16:04:50 +08:00
parent 57617d9cf5
commit 83e6226c22
8 changed files with 26 additions and 25 deletions
@@ -24,10 +24,9 @@ namespace IRaCIS.Core.Application.Contracts
public string Path { get; set; }
//public Guid CreateUserId { get; set; }
//public DateTime CreateTime { get; set; }
//public Guid UpdateUserId { get; set; }
//public DateTime UpdateTime { get; set; }
public bool IsDeleted { get; set; }
public bool IsReading { get; set; } = true;
}
@@ -30,6 +30,9 @@
public Guid UpdateUserId { get; set; }
public DateTime UpdateTime { get; set; }
public bool IsDeleted { get; set; }
public bool IsReading { get; set; } = true;
public List<Guid> InstanceList { get; set; } = new List<Guid>();
public List<string> InstancePathList { get; set; } = new List<string>();