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 /// /// 分割Id /// public Guid SegmentationId { get; set; } /// /// 分割的序号 /// public int SegmentMumber { get; set; } /// /// SegmentName /// public string SegmentName { get; set; } = string.Empty; /// /// 颜色 /// public string ColorRgb { get; set; } = string.Empty; /// /// 均值 /// public decimal? AvgValue { get; set; } /// /// 最大值 /// public decimal? MaxValue { get; set; } /// /// 最小值 /// public decimal? MinValue { get; set; } /// /// 方差 /// public decimal? Variance { get; set; } /// /// 中位数 /// public decimal? Median { get; set; } /// /// 体积 /// public decimal? Volume { get; set; } /// /// 长径 /// public decimal? MajorAxis { get; set; } /// /// 短径 /// public decimal? ShortAxis { get; set; } /// /// Peak /// public decimal? Peak { get; set; } /// /// TLG /// public decimal? TLG { get; set; } /// /// MTV /// public decimal? MTV { get; set; } } }