Uat_Study
parent
4a6bd50b93
commit
88c96374cc
|
@ -348,6 +348,11 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int ImagePlatform { get; set; } = 1;
|
public int ImagePlatform { get; set; } = 1;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 修约小数点
|
||||||
|
/// </summary>
|
||||||
|
public int? DigitPlaces { get; set; } = 2;
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统标准ID
|
/// 系统标准ID
|
||||||
|
@ -852,10 +857,10 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
public FormType FormType { get; set; }
|
public FormType FormType { get; set; }
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
///// <summary>
|
||||||
/// 修约小数点
|
///// 修约小数点
|
||||||
/// </summary>
|
///// </summary>
|
||||||
public int? DigitPlaces { get; set; }
|
//public int? DigitPlaces { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public bool IsSignSave { get; set; } = false;
|
public bool IsSignSave { get; set; } = false;
|
||||||
|
@ -872,6 +877,11 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
|
|
||||||
public string GlobalUpdateType { get; set; } = string.Empty;
|
public string GlobalUpdateType { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 修约小数点
|
||||||
|
/// </summary>
|
||||||
|
public int? DigitPlaces { get; set; } = 2;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 阅片工具
|
/// 阅片工具
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -429,7 +429,7 @@ namespace IRaCIS.Core.Application
|
||||||
await _readingQuestionCriterionTrialRepository.UpdatePartialFromQueryAsync(inDto.TrialReadingCriterionId, x => new ReadingQuestionCriterionTrial()
|
await _readingQuestionCriterionTrialRepository.UpdatePartialFromQueryAsync(inDto.TrialReadingCriterionId, x => new ReadingQuestionCriterionTrial()
|
||||||
{
|
{
|
||||||
FormType = inDto.FormType,
|
FormType = inDto.FormType,
|
||||||
DigitPlaces = inDto.DigitPlaces,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
@ -462,6 +462,7 @@ namespace IRaCIS.Core.Application
|
||||||
//DigitPlaces=inDto.DigitPlaces,
|
//DigitPlaces=inDto.DigitPlaces,
|
||||||
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
|
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
|
||||||
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,
|
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,
|
||||||
|
DigitPlaces= inDto.DigitPlaces,
|
||||||
//IsImageIabeled = inDto.IsImageIabeled,
|
//IsImageIabeled = inDto.IsImageIabeled,
|
||||||
IsReadingShowSubjectInfo = inDto.IsReadingShowSubjectInfo,
|
IsReadingShowSubjectInfo = inDto.IsReadingShowSubjectInfo,
|
||||||
IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults,
|
IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults,
|
||||||
|
|
Loading…
Reference in New Issue