40 lines
695 B
C#
40 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|
{
|
|
|
|
public class AddOrUpdateReadingClinicalDataDto
|
|
{
|
|
|
|
public Guid? Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目ID
|
|
/// </summary>
|
|
public Guid TrialId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对象ID
|
|
/// </summary>
|
|
public Guid objectId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 临床数据类型Id
|
|
/// </summary>
|
|
public Guid ClinicalDataTrialSetId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 临床数据类型Id
|
|
/// </summary>
|
|
public bool IsVisit { get; set; }
|
|
}
|
|
|
|
public class GetTrialClinicalData
|
|
{
|
|
}
|
|
}
|