修改一版
This commit is contained in:
@@ -13,15 +13,19 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
|
||||
}
|
||||
|
||||
|
||||
public class ClinicalDataSetAddOrEdit
|
||||
public class ClinicalDataTrialSetAddOrEdit: ClinicalDataSystemSetAddOrEdit
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目ID
|
||||
/// </summary>
|
||||
public Guid? TrialId { get; set; }
|
||||
}
|
||||
|
||||
public class ClinicalDataSystemSetAddOrEdit
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -56,15 +60,37 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
|
||||
}
|
||||
|
||||
public class ClinicalDataSetView
|
||||
public class ClinicalDataTrialSetView : ClinicalDataSystemSetView
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目ID
|
||||
/// </summary>
|
||||
public Guid? TrialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 系统的ClinicalDataSetId
|
||||
/// </summary>
|
||||
public Guid? SystemClinicalDataSetId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否来自于系统数据
|
||||
/// </summary>
|
||||
public bool IsFromSystemData
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.SystemClinicalDataSetId == null ? false : true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public class ClinicalDataSystemSetView
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 名称
|
||||
@@ -83,10 +109,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
public ClinicalUploadType ClinicalUploadType { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 系统的ClinicalDataSetId
|
||||
/// </summary>
|
||||
public Guid? SystemClinicalDataSetId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
@@ -108,14 +131,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public bool IsCheck { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否来自于系统数据
|
||||
/// </summary>
|
||||
public bool IsFromSystemData {
|
||||
get {
|
||||
return this.SystemClinicalDataSetId == null ? false : true;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public class ClinicalDataInDto
|
||||
@@ -150,25 +166,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
}
|
||||
|
||||
|
||||
public class SetClinicalDataCheckIndto
|
||||
{
|
||||
/// <summary>
|
||||
/// 项目ID
|
||||
/// </summary>
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
List<>
|
||||
|
||||
/// <summary>
|
||||
/// 勾选的ID
|
||||
/// </summary>
|
||||
public List<Guid> CheckIds { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 启用的ID
|
||||
/// </summary>
|
||||
public List<Guid> EnableIds { get; set; }
|
||||
}
|
||||
|
||||
public class AddTrialClinicalDataSetInDto
|
||||
{
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user