修改
This commit is contained in:
@@ -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>();
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user