31 lines
892 B
C#
31 lines
892 B
C#
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
/// 一致性分析临床数据
|
|
///</summary>
|
|
[Table("ReadingConsistentClinicalDataPDF")]
|
|
public class ReadingConsistentClinicalDataPDF : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("ReadingConsistentClinicalDataId")]
|
|
public ReadingConsistentClinicalData ReadingConsistentClinicalData { get; set; }
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// 阅片临床数据ID
|
|
/// </summary>
|
|
public Guid ReadingConsistentClinicalDataId { get; set; }
|
|
|
|
public string Path { get; set; } = string.Empty;
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
public int Size { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 文件类型
|
|
/// </summary>
|
|
public string Type { get; set; } = string.Empty;
|
|
}
|
|
}
|