This commit is contained in:
he
2024-10-29 15:56:05 +08:00
parent 3ef765e767
commit ba588e3e14
5 changed files with 160 additions and 10 deletions
@@ -2,6 +2,22 @@
{
public class TrialExperienceCommand
{
/// <summary>
/// 数据类型
/// </summary>
public ExperienceDataType ExperienceDataType { get; set; }
/// <summary>
/// 项目Id
/// </summary>
public Guid? TrialId { get; set; }
/// <summary>
/// 适应症的枚举
/// </summary>
public int IndicationEnum { get; set; } = -1;
public Guid? Id { get; set; }
public Guid DoctorId { get; set; }
@@ -35,10 +51,23 @@
}
public class GetTrialExperienceListInDto
{
public Guid DoctorId { get; set; }
public Guid? TrialId { get; set; }
}
public class TrialExperienceListDTO : TrialExperienceCommand
{
public string Phase { get; set; } = String.Empty;
/// <summary>
/// 阅片标准
/// </summary>
public CriterionType? CriterionType { get; set; }
public List<string> EvaluationCriteriaList { get; set; } = new List<string>();
}