61 lines
1.2 KiB
C#
61 lines
1.2 KiB
C#
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2024-05-24 14:31:45
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///SCPImageUpload
|
|
///</summary>
|
|
[Table("SCPImageUpload")]
|
|
public class SCPImageUpload : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public Trial Trial { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public TrialSite TrialSite { get; set; }
|
|
#endregion
|
|
|
|
|
|
public string CallingAE { get; set; } = string.Empty;
|
|
|
|
|
|
public string CalledAE { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public string CallingAEIP { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public DateTime StartTime { get; set; }
|
|
|
|
|
|
public DateTime EndTime { get; set; }
|
|
|
|
|
|
|
|
public int FileCount { get; set; }
|
|
|
|
|
|
|
|
public long FileSize { get; set; }
|
|
|
|
|
|
public int StudyCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public Guid TrialId { get; set; }
|
|
public Guid TrialSiteId { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|