This commit is contained in:
he
2022-06-10 10:00:15 +08:00
parent f63bfe2947
commit db1c6bbe72
12 changed files with 160 additions and 97 deletions
@@ -24,9 +24,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid SubjectId { get; set; }
/// <summary>
/// 对象ID
/// 阅片ID
/// </summary>
public Guid objectId { get; set; }
public Guid ReadingId { get; set; }
/// <summary>
/// 临床数据类型Id
@@ -37,15 +37,32 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 临床数据类型Id
/// </summary>
public bool IsVisit { get; set; }
/// <summary>
/// 文件列表
/// </summary>
public List<FileDto> FileList { get; set; }
}
public class FileDto
{
/// <summary>
/// 文件名称
/// </summary>
public string FileName { get; set; }
/// <summary>
/// 路径
/// </summary>
public string Path { get; set; }
}
/// <summary>
/// 获取访视列表
/// </summary>
public class GetReadingClinicalDataListIndto :PageInput
{
public Guid ObjectId { get; set; }
public Guid ReadingId { get; set; }
}
public class GetReadingClinicalDataPDFListIndto:PageInput
@@ -65,7 +82,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// 对象ID
/// </summary>
public Guid ObjectId { get; set; }
public Guid ReadingId { get; set; }
/// <summary>
/// 受试者ID
@@ -108,7 +125,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// 对象ID
/// </summary>
public Guid ObjectId { get; set; }
public Guid ReadingId { get; set; }
/// <summary>
/// 受试者ID
@@ -185,8 +202,27 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class GetTrialClinicalDataSelectIndto
{
/// <summary>
/// 项目ID
/// </summary>
public Guid TrialId { get; set; }
}
/// <summary>
/// 阅片期临床数据ID
/// </summary>
public Guid? ReadingClinicalDataId { get; set; }
/// <summary>
/// 对象ID
/// </summary>
public Guid ReadingId { get; set; }
/// <summary>
/// 是否是访视
/// </summary>
public bool IsVisit { get; set; }
}
public class GetTrialClinicalDataSelectOutDto
{