修改一版

This commit is contained in:
he
2022-08-11 17:24:04 +08:00
parent e0913805d4
commit 7bd240eb5b
4 changed files with 81 additions and 3 deletions
@@ -54,6 +54,12 @@ namespace IRaCIS.Core.Application.ViewModel
/// 任务类型
/// </summary>
public ReadingCategory ReadingCategory { get; set; }
/// <summary>
/// 排序
/// </summary>
public int? ParentShowOrder { get; set; }
}
///<summary>ReadingMedicineSystemQuestionQuery 列表查询参数模型</summary>
@@ -95,6 +101,11 @@ namespace IRaCIS.Core.Application.ViewModel
public Guid Id { get; set; }
}
public class TrialDataFromSystem : ReadingMedicineTrialQuestion
{
public Guid SystemQuestionId { get; set; }
}
public class AddTrialDataFromSystemInDto
{
public Guid TrialId { get; set; }
@@ -123,6 +134,21 @@ namespace IRaCIS.Core.Application.ViewModel
public ReadingCategory ReadingCategory { get; set; }
}
public class GetReadingMedicineSystemOtherQuestionInDto
{
public Guid? Id { get; set; }
public int? ShowOrder { get; set; }
/// <summary>
/// 任务类型
/// </summary>
public ReadingCategory? ReadingCategory { get; set; }
}
/// <summary>
/// 获取项目的其他问题
/// </summary>