@@ -3,69 +3,60 @@
|
||||
// 此代码由T4模板自动生成 byzhouhang 20210918
|
||||
// 生成时间 2021-12-06 10:49:39
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
namespace IRaCIS.Core.Domain.Models;
|
||||
|
||||
[Comment("影像 - 非dicom检查")]
|
||||
[Table("NoneDicomStudy")]
|
||||
public class NoneDicomStudy : BaseFullAuditEntity
|
||||
{
|
||||
///<summary>
|
||||
///NoneDicomStudy
|
||||
///</summary>
|
||||
[Table("NoneDicomStudy")]
|
||||
public class NoneDicomStudy : BaseFullAuditEntity
|
||||
{
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
public List<NoneDicomStudyFile> NoneDicomFileList { get; set; }
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
public List<NoneDicomStudyFile> NoneDicomFileList { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public List<NoneDicomStudyFile> TaskNoneDicomFileList { get; set; }
|
||||
[JsonIgnore]
|
||||
public List<NoneDicomStudyFile> TaskNoneDicomFileList { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public SubjectVisit SubjectVisit { get; set; }
|
||||
[JsonIgnore]
|
||||
public Subject Subject { get; set; }
|
||||
[JsonIgnore]
|
||||
public SubjectVisit SubjectVisit { get; set; }
|
||||
[JsonIgnore]
|
||||
public Subject Subject { get; set; }
|
||||
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
|
||||
public string BodyPart { get; set; } = null!;
|
||||
|
||||
public string StudyCode { get; set; } = string.Empty;
|
||||
public int Code { get; set; }
|
||||
|
||||
public int FileCount { get; set; }
|
||||
public string Description { get; set; } = null!;
|
||||
|
||||
public int Code { get; set; }
|
||||
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
public int FileCount { get; set; }
|
||||
|
||||
public Guid SubjectId { get; set; }
|
||||
public DateTime ImageDate { get; set; }
|
||||
|
||||
|
||||
public Guid SubjectVisitId { get; set; }
|
||||
|
||||
public string Modality { get; set; } = null!;
|
||||
|
||||
|
||||
public string BodyPart { get; set; } = string.Empty;
|
||||
public string StudyCode { get; set; } = null!;
|
||||
|
||||
public Guid SubjectId { get; set; }
|
||||
|
||||
public Guid SubjectVisitId { get; set; }
|
||||
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
public DateTime? UploadVideoTime { get; set; }
|
||||
|
||||
public string VideoName { get; set; } = null!;
|
||||
|
||||
public string VideoObjectName { get; set; } = null!;
|
||||
|
||||
public string VideoUrl { get; set; } = null!;
|
||||
|
||||
}
|
||||
|
||||
|
||||
public string Modality { get; set; } = string.Empty;
|
||||
|
||||
public DateTime ImageDate { get; set; }
|
||||
|
||||
|
||||
public string Description { get; set; } = string.Empty;
|
||||
|
||||
|
||||
public string VideoName { get; set; } = string.Empty;
|
||||
|
||||
public string VideoObjectName { get; set; } = string.Empty;
|
||||
|
||||
public DateTime? UploadVideoTime { get; set; }
|
||||
|
||||
public string VideoUrl { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user