非dicom 文件上传视频,增加字段

Uat_Study
hang 2022-05-09 13:32:29 +08:00
parent 9e19dcb8b6
commit b0e7aadd76
3 changed files with 23 additions and 15 deletions

View File

@ -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;
}

View File

@ -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;
}
}

View File

@ -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; }