This commit is contained in:
he
2022-12-08 16:47:37 +08:00
parent 1b123b0a3d
commit 5c3701012a
7 changed files with 83 additions and 13 deletions
@@ -110,12 +110,15 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public Guid CreateUserId { get; set; }
public int? NumberOfFrames { get; set; }
public Guid UpdateUserId { get; set; }
//string UpdateUserName { get; set; }
public DateTime UpdateTime { get; set; }
public int? NumberOfFrames { get; set; }
public bool IsDeleted { get; set; }
@@ -11,7 +11,7 @@ namespace IRaCIS.Core.Domain.Models
///读片模块
///</summary>
[Table("ReadModule")]
public class ReadModule : Entity, IAuditAdd
public class ReadModule : Entity, IAuditAdd, IAuditUpdate, ISoftDelete
{
[JsonIgnore]
@@ -67,12 +67,25 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public Guid TrialId { get; set; }
public Guid UpdateUserId { get; set; }
public DateTime UpdateTime { get; set; }
public bool IsDeleted { get; set; }
public DateTime? DeletedTime { get; set; }
public Guid? DeleteUserId { get; set; }
///// <summary>
/////
///// </summary>
//public decimal VisitNum { get; set; }
// [JsonIgnore]
// [JsonIgnore]
///// <summary>
///// 对应
///// </summary>
@@ -11,7 +11,7 @@ namespace IRaCIS.Core.Domain.Models
/// 阅片计划
///</summary>
[Table("ReadingPeriodPlan")]
public class ReadingPeriodPlan : Entity, IAuditAdd
public class ReadingPeriodPlan : Entity, IAuditAdd, IAuditUpdate, ISoftDelete
{
/// <summary>
@@ -46,6 +46,19 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public Guid CreateUserId { get; set; }
public Guid UpdateUserId { get; set; }
public DateTime UpdateTime { get; set; }
public bool IsDeleted { get; set; }
public DateTime? DeletedTime { get; set; }
public Guid? DeleteUserId { get; set; }
}
@@ -12,7 +12,7 @@ namespace IRaCIS.Core.Domain.Models
///阅片期设置 只会设计到所有人 或者某个Site 针对全局
///</summary>
[Table("ReadingPeriodSet")]
public class ReadingPeriodSet : Entity, IAuditAdd
public class ReadingPeriodSet : Entity, IAuditAdd, IAuditUpdate, ISoftDelete
{
/// <summary>
@@ -84,7 +84,20 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public ReadingSetType ReadingSetType { get; set; }
[JsonIgnore]
public Guid UpdateUserId { get; set; }
public DateTime UpdateTime { get; set; }
public bool IsDeleted { get; set; }
public DateTime? DeletedTime { get; set; }
public Guid? DeleteUserId { get; set; }
[JsonIgnore]
public List<ReadingPeriodSite> ReadingPeriodSites { get; set; } = new List<ReadingPeriodSite>();