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