44 lines
828 B
C#
44 lines
828 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("ReadingClinicalDataPDF")]
|
|
public class ReadingClinicalDataPDF : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("ReadingClinicalDataId")]
|
|
public ReadingClinicalData ReadingClinicalData { get; set; }
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// 阅片临床数据ID
|
|
/// </summary>
|
|
public Guid ReadingClinicalDataId { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
public string FileName { get; set; }
|
|
|
|
|
|
public int Size { get; set; } = 0;
|
|
|
|
public string Type { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|