39 lines
1021 B
C#
39 lines
1021 B
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2021-12-06 10:49:39
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///NoneDicomStudyFile
|
|
///</summary>
|
|
[Table("NoneDicomStudyFile")]
|
|
public class NoneDicomStudyFile : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[ForeignKey("NoneDicomStudyId")]
|
|
[JsonIgnore]
|
|
public NoneDicomStudy NoneDicomStudy { get; set; }
|
|
#endregion
|
|
|
|
|
|
public Guid NoneDicomStudyId { get; set; }
|
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
public string FileName { get; set; }
|
|
|
|
public string FileType { get; set; }
|
|
|
|
public decimal? FileSize { get; set; }
|
|
|
|
}
|
|
|
|
}
|