45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2021-12-20 16:42:26
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("项目配置 - 访视计划调整影像检查")]
|
|
[Table("VisitPlanInfluenceStudy")]
|
|
public class VisitPlanInfluenceStudy : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("VisitPlanInfluenceStatId")]
|
|
public VisitPlanInfluenceStat VisitPlanInfluenceStat { get; set; }
|
|
[JsonIgnore]
|
|
public SubjectVisit SubjectVisit { get; set; }
|
|
#endregion
|
|
|
|
|
|
public Guid SubjectVisitId { get; set; }
|
|
|
|
public Guid StudyId { get; set; }
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
public bool IsDicomStudy { get; set; }
|
|
|
|
public string Modality { get; set; } = string.Empty;
|
|
|
|
public bool IsOverWindowNowNotOverWindow { get; set; }
|
|
|
|
public DateTime? StudyTime { get; set; }
|
|
|
|
public string HistoryWindow { get; set; } = string.Empty;
|
|
|
|
public string NowWindow { get; set; } = string.Empty;
|
|
|
|
public Guid VisitPlanInfluenceStatId { get; set; }
|
|
|
|
}
|