irc-netcore-api/IRaCIS.Core.Domain/Reading/Segment/Segmentation.cs

60 lines
1.1 KiB
C#

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