修改非dicom 阅片
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-02-26 13:25:56 +08:00
parent 2a9c1ec45c
commit 56170b73ed
11 changed files with 19328 additions and 20 deletions
+10 -1
View File
@@ -2,7 +2,7 @@ namespace IRaCIS.Core.Domain.Models;
[Comment("影像 - 非dicom检查")]
[Table("NoneDicomStudy")]
public class NoneDicomStudy : BaseFullAuditEntity
public class NoneDicomStudy : BaseFullDeleteAuditEntity
{
#region
[JsonIgnore]
@@ -31,6 +31,12 @@ public class NoneDicomStudy : BaseFullAuditEntity
public DateTime ImageDate { get; set; }
public string Description { get; set; } = string.Empty;
public bool IsReading { get; set; } = true;
#region Video
public string VideoName { get; set; } = string.Empty;
public string VideoObjectName { get; set; } = string.Empty;
@@ -39,5 +45,8 @@ public class NoneDicomStudy : BaseFullAuditEntity
public string VideoUrl { get; set; } = string.Empty;
#endregion
}