This commit is contained in:
he
2025-02-25 14:07:25 +08:00
parent cc17816dae
commit 51f21805be
11 changed files with 19287 additions and 1 deletions
@@ -0,0 +1,24 @@
namespace IRaCIS.Core.Domain.Models;
[Comment("项目阅片 - 非Dicom标记")]
[Table("ReadingNoneDicomMark")]
public class ReadingNoneDicomMark : BaseAddAuditEntity
{
#region
[JsonIgnore]
[ForeignKey("StudyId")]
public NoneDicomStudy NoneDicomStudy { get; set; }
#endregion
public Guid VisitTaskId { get; set; }
public Guid? StudyId { get; set; }
public Guid? NoneDicomFileId { get; set; }
public string Path { get; set; }
[MaxLength]
public string MeasureData { get; set; } = string.Empty;
}