namespace IRaCIS.Core.Domain.Models; [Comment("分割分组")] [Table("Segmentation")] public class Segmentation : BaseFullDeleteAuditEntity { #region 导航属性 #endregion /// /// 项目Id /// public Guid TrialId { get; set; } /// /// 受试者Id /// public Guid SubjectId { get; set; } /// /// 访视Id /// public Guid SubjectVisitId { get; set; } /// /// 任务Id /// public Guid VisitTaksId { get; set; } /// /// 检查Id /// public Guid StudyId { get; set; } /// /// 序列Id /// public Guid SeriesId { get; set; } /// /// 分割分组名称 /// public string SegmentationName { get; set; } = string.Empty; /// /// 分组的Json /// [MaxLength] public string SegmentationJson { get; set; } /// /// SEG文件的URL地址 /// [MaxLength] public string SEGUrl { get; set; } = string.Empty; }