添加表实体
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
parent
c1743c2934
commit
49eeee35bb
|
|
@ -0,0 +1,97 @@
|
||||||
|
using IRaCIS.Core.Domain.Models;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Numerics;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace IRaCIS.Core.Domain.Reading.Segment
|
||||||
|
{
|
||||||
|
|
||||||
|
[Comment("分割")]
|
||||||
|
[Table("Segment")]
|
||||||
|
public class Segment : BaseFullDeleteAuditEntity
|
||||||
|
{
|
||||||
|
#region 导航属性
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 分割Id
|
||||||
|
/// </summary>
|
||||||
|
public Guid SegmentationId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 分割的序号
|
||||||
|
/// </summary>
|
||||||
|
public int SegmentMumber { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// SegmentName
|
||||||
|
/// </summary>
|
||||||
|
public string SegmentName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 颜色
|
||||||
|
/// </summary>
|
||||||
|
public string ColorRgb { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 均值
|
||||||
|
/// </summary>
|
||||||
|
public decimal? AvgValue { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 最大值
|
||||||
|
/// </summary>
|
||||||
|
public decimal? MaxValue { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 最小值
|
||||||
|
/// </summary>
|
||||||
|
public decimal? MinValue { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 方差
|
||||||
|
/// </summary>
|
||||||
|
public decimal? Variance { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 中位数
|
||||||
|
/// </summary>
|
||||||
|
public decimal? Median { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 体积
|
||||||
|
/// </summary>
|
||||||
|
public decimal? Volume { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 长径
|
||||||
|
/// </summary>
|
||||||
|
public decimal? MajorAxis { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 短径
|
||||||
|
/// </summary>
|
||||||
|
public decimal? ShortAxis { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Peak
|
||||||
|
/// </summary>
|
||||||
|
public decimal? Peak { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// TLG
|
||||||
|
/// </summary>
|
||||||
|
public decimal? TLG { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// MTV
|
||||||
|
/// </summary>
|
||||||
|
public decimal? MTV { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,59 @@
|
||||||
|
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 VisitTaksId { 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;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue