非dicom 文件上传视频,增加字段
parent
9e19dcb8b6
commit
b0e7aadd76
|
@ -62,6 +62,15 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
public string Description { get; set; } = string.Empty;
|
||||
|
||||
public int Code { get; set; }
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -102,6 +102,15 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
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;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -17,32 +17,22 @@ namespace IRaCIS.Core.Domain.Models
|
|||
[ForeignKey("NoneDicomStudyId")]
|
||||
|
||||
public NoneDicomStudy NoneDicomStudy { get; set; }
|
||||
/// <summary>
|
||||
/// NoneDicomStudyId
|
||||
/// </summary>
|
||||
|
||||
[Required]
|
||||
public Guid NoneDicomStudyId { get; set; }
|
||||
/// <summary>
|
||||
/// Path
|
||||
/// </summary>
|
||||
|
||||
[Required]
|
||||
public string Path { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// FileName
|
||||
/// </summary>
|
||||
|
||||
[Required]
|
||||
public string FileName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// CreateTime
|
||||
/// </summary>
|
||||
|
||||
[Required]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// CreateUserId
|
||||
/// </summary>
|
||||
|
||||
[Required]
|
||||
public Guid CreateUserId { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue