uat-ivus-oct-再次修改8
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
dd1da21738
commit
8fe84cd2ad
|
|
@ -147,6 +147,8 @@ public class IvusExportDto : IVUS_OCTBaseDto
|
||||||
|
|
||||||
/// <summary>PAV (如无可不填)</summary>
|
/// <summary>PAV (如无可不填)</summary>
|
||||||
public string PAV { get; set; }
|
public string PAV { get; set; }
|
||||||
|
|
||||||
|
public string DOST { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -154,6 +156,11 @@ public class IvusExportDto : IVUS_OCTBaseDto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class OctExportDto : IVUS_OCTBaseDto
|
public class OctExportDto : IVUS_OCTBaseDto
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 斑块到血管开口的距离
|
||||||
|
/// </summary>
|
||||||
|
public string DOST { get; set; }
|
||||||
|
|
||||||
/// <summary>靶段</summary>
|
/// <summary>靶段</summary>
|
||||||
public string TARGETV { get; set; }
|
public string TARGETV { get; set; }
|
||||||
|
|
||||||
|
|
@ -444,6 +451,11 @@ public class IVUS_OCTExportService(IRepository<ReadingQuestionCriterionTrial> _r
|
||||||
|
|
||||||
ivus.PAV = findPAVLession?.LessionAnswerList.Where(t => t.QuestionMark == QuestionMark.PAV).FirstOrDefault()?.QuestionValue ?? string.Empty;
|
ivus.PAV = findPAVLession?.LessionAnswerList.Where(t => t.QuestionMark == QuestionMark.PAV).FirstOrDefault()?.QuestionValue ?? string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
ivus.DOST = findPAVLession?.LessionAnswerList.Where(t => t.QuestionMark == QuestionMark.PlaqueToOstiumDistance).FirstOrDefault()?.QuestionValue ?? string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ivusList.Add(ivus);
|
ivusList.Add(ivus);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -785,6 +797,8 @@ public class IVUS_OCTExportService(IRepository<ReadingQuestionCriterionTrial> _r
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 斑块到血管开口的距离
|
||||||
|
oct.DOST = findLession?.LessionAnswerList.Where(t => t.QuestionMark == QuestionMark.PlaqueToOstiumDistance).FirstOrDefault()?.QuestionValue ?? string.Empty;
|
||||||
|
|
||||||
// 匹配动脉段最小FCT
|
// 匹配动脉段最小FCT
|
||||||
oct.MINFCT = findLession?.LessionAnswerList.Where(t => t.QuestionMark == QuestionMark.MiniMumFCT).FirstOrDefault()?.QuestionValue ?? string.Empty;
|
oct.MINFCT = findLession?.LessionAnswerList.Where(t => t.QuestionMark == QuestionMark.MiniMumFCT).FirstOrDefault()?.QuestionValue ?? string.Empty;
|
||||||
|
|
|
||||||
|
|
@ -2444,8 +2444,10 @@ namespace IRaCIS.Core.Domain.Share
|
||||||
/// </summary>
|
/// </summary>
|
||||||
LumenAreaMeasurement = 1030,
|
LumenAreaMeasurement = 1030,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 斑块到血管开口的距离
|
||||||
|
/// </summary>
|
||||||
|
PlaqueToOstiumDistance=1031,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 第一次测量
|
/// 第一次测量
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue