//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2024-05-24 14:31:45 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 using System; using IRaCIS.Core.Domain.Share; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Collections.Generic; using Microsoft.EntityFrameworkCore; namespace IRaCIS.Core.Domain.Models; [Comment("项目中心 - 影像推送记录")] [Table("SCPImageUpload")] public class SCPImageUpload : BaseAddAuditEntity { #region 导航属性 [JsonIgnore] public Trial Trial { get; set; } [JsonIgnore] public TrialSite TrialSite { get; set; } #endregion public string CalledAE { get; set; } = null!; public string CallingAE { get; set; } = null!; public string CallingAEIP { get; set; } = null!; public DateTime EndTime { get; set; } public int FileCount { get; set; } public long FileSize { get; set; } public DateTime StartTime { get; set; } public int StudyCount { get; set; } public Guid TrialId { get; set; } public Guid TrialSiteId { get; set; } }