导出模版只导出靶段
parent
ffb8894608
commit
adc9b2635a
|
|
@ -254,32 +254,32 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// <summary>
|
||||
/// 靶段
|
||||
/// </summary>
|
||||
public string TargetSegment { get; set; }
|
||||
public string TargetSegment { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 靶段备注
|
||||
/// </summary>
|
||||
public string TargetSegmentRemarks { get; set; }
|
||||
public string TargetSegmentRemarks { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// ROI段落总长度
|
||||
/// </summary>
|
||||
public string ROIAllLength { get; set; }
|
||||
public string ROIAllLength { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 回撤中的图像帧数
|
||||
/// </summary>
|
||||
public string PullbackFrameCount { get; set; }
|
||||
public string PullbackFrameCount { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 斑块类型
|
||||
/// </summary>
|
||||
public string PlaqueType { get; set; }
|
||||
public string PlaqueType { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 访视点备注(如有)
|
||||
/// </summary>
|
||||
public string AdjustReason { get; set; }
|
||||
public string AdjustReason { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -475,11 +475,11 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
SubjectID = (taskinfo.BlindSubjectCode.IsNullOrEmpty() ? taskinfo.Subject.Code : taskinfo.BlindSubjectCode),
|
||||
TaskBlindName = taskinfo.TaskBlindName,
|
||||
TargetSegment= targetSegmentAnswer,
|
||||
TargetSegmentRemarks = awswerList.Where(x=>x.ReadingQuestionTrial.QuestionType == QuestionType.TargetSegmentRemarks).Select(x=>x.Answer).FirstOrDefault()??string.Empty,
|
||||
ROIAllLength = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.ROIAllLength).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
PullbackFrameCount = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.PullbackFrameCount).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
AdjustReason = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.AdjustReason).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
PlaqueType = plaqueTypeAnswer,
|
||||
//TargetSegmentRemarks = awswerList.Where(x=>x.ReadingQuestionTrial.QuestionType == QuestionType.TargetSegmentRemarks).Select(x=>x.Answer).FirstOrDefault()??string.Empty,
|
||||
//ROIAllLength = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.ROIAllLength).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
//PullbackFrameCount = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.PullbackFrameCount).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
//AdjustReason = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.AdjustReason).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
//PlaqueType = plaqueTypeAnswer,
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -328,11 +328,11 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
SubjectID = (taskinfo.BlindSubjectCode.IsNullOrEmpty() ? taskinfo.Subject.Code : taskinfo.BlindSubjectCode),
|
||||
TaskBlindName = taskinfo.TaskBlindName,
|
||||
TargetSegment = targetSegmentAnswer,
|
||||
TargetSegmentRemarks = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.TargetSegmentRemarks).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
ROIAllLength = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.ROIAllLength).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
//PullbackFrameCount = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.PullbackFrameCount).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
PlaqueType = plaqueTypeAnswer,
|
||||
AdjustReason = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.AdjustReason).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
//TargetSegmentRemarks = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.TargetSegmentRemarks).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
//ROIAllLength = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.ROIAllLength).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
////PullbackFrameCount = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.PullbackFrameCount).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
//PlaqueType = plaqueTypeAnswer,
|
||||
//AdjustReason = awswerList.Where(x => x.ReadingQuestionTrial.QuestionType == QuestionType.AdjustReason).Select(x => x.Answer).FirstOrDefault() ?? string.Empty,
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue