48 lines
983 B
C#
48 lines
983 B
C#
|
|
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
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; }
|
|
|
|
|
|
public string FileName { get; set; }
|
|
|
|
public int Size { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 文件类型
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|