修改一版

This commit is contained in:
he
2022-06-10 11:49:41 +08:00
parent e6248565be
commit c423fb1047
5 changed files with 78 additions and 8 deletions
@@ -180,6 +180,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public ClinicalLevel ClinicalDataLevel { get; set; }
public Guid SubjectId { get; set; }
/// <summary>
/// 上传方式
@@ -199,10 +200,37 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// 文件数量
/// </summary>
public int FileCount { get; set; } = 0;
public int FileCount { get {
return this.FileList.Count();
} }
public List<GetFileDto> FileList { get; set; } = new List<GetFileDto>();
}
public class GetFileDto
{
/// <summary>
/// Id
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Path
/// </summary>
public string Path { get; set; }
/// <summary>
/// FileName
/// </summary>
public string FileName { get; set; }
}
public class GetTrialClinicalDataSelectIndto
{
@@ -221,6 +249,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public Guid ReadingId { get; set; }
public Guid SubjectId { get; set; }
/// <summary>
/// 是否是访视
/// </summary>