This commit is contained in:
he
2022-07-13 14:27:06 +08:00
parent 768c7432ae
commit 00fe76f326
6 changed files with 113 additions and 17 deletions
@@ -305,7 +305,7 @@ namespace IRaCIS.Core.Application.Contracts
/// <summary>
/// 影像是否有标注
/// </summary>
public bool IsImageLabled { get; set; }
public bool IsImageIabeled { get; set; }
/// <summary>
/// IR阅片是否显示受试者信息
@@ -320,20 +320,23 @@ namespace IRaCIS.Core.Application.Contracts
//读片任务显示是否顺序
public bool IsReadingTaskViewInOrder { get; set; } = true;
/// <summary>
/// 修约小数点
/// </summary>
public int? DigitPlaces { get; set; } = 2;
/// <summary>
/// 仲裁规则/对象
/// </summary>
public int ArbitrationRule { get; set; } = 2;
/// <summary>
/// 修约小数点
/// </summary>
public int? DigitPlaces { get; set; }
public FormType? FormType { get; set; }
/// <summary>
/// 项目标准Id
/// </summary>
public List<Guid> TrialCriterionId { get; set; }
public Guid? TrialCriterionId { get; set; }
///// <summary>
///// 全局阅片
@@ -531,12 +534,36 @@ namespace IRaCIS.Core.Application.Contracts
public string CriterionName { get; set; }
}
public class TrialReadingInfoSignInDto
{
[NotDefault]
public Guid TrialId { get; set; }
}
public class GetTrialReadingInfoInDto
{
[NotDefault]
public Guid TrialId { get; set; }
}
public class SetTrialReadingCriterionInDto
{
public Guid ReadingQuestionCriterionTrialId { get; set; }
/// <summary>
/// 表单类型
/// </summary>
public FormType FormType { get; set; }
/// <summary>
/// 修约小数点
/// </summary>
public int? DigitPlaces { get; set; }
}
public class SetTrialReadingInfoInDto
{
@@ -563,7 +590,7 @@ namespace IRaCIS.Core.Application.Contracts
/// <summary>
/// 影像是否有标注
/// </summary>
public bool IsImageLabled { get; set; }
public bool IsImageIabeled { get; set; }
//读片任务显示是否顺序
public bool IsReadingTaskViewInOrder { get; set; } = true;