修改一版

This commit is contained in:
he
2022-08-03 15:59:39 +08:00
parent 0d8fb1df93
commit 2daa2fdb13
8 changed files with 20 additions and 10 deletions
@@ -621,8 +621,6 @@ namespace IRaCIS.Core.Application.Contracts
public FormType? FormType { get; set; }
public int ImageCount { get; set; }
/// <summary>
/// 项目标准Id
@@ -707,8 +705,6 @@ namespace IRaCIS.Core.Application.Contracts
public int? DigitPlaces { get; set; }
public int ImageCount { get; set; }
public bool IsSignSave { get; set; } = false;
}
@@ -229,7 +229,7 @@ namespace IRaCIS.Core.Application
result.DigitPlaces = trialCriterion.DigitPlaces;
result.TrialCriterionId = trialCriterion.Id;
result.FormType = trialCriterion.FormType;
result.ImageCount=trialCriterion.ImageCount;
};
result.TrialQuestionList = await _readingQuestionTrialRepository.Where(x => x.ReadingQuestionCriterionTrial.IsConfirm && x.TrialId == inDto.TrialId&&x.ReadingQuestionCriterionTrialId == result.TrialCriterionId
@@ -265,7 +265,7 @@ namespace IRaCIS.Core.Application
{
FormType = inDto.FormType,
DigitPlaces = inDto.DigitPlaces,
ImageCount=inDto.ImageCount,
});