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