分裂类型对应
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
hang 2025-11-07 15:07:27 +08:00
parent d48f736392
commit ae36d4680a
1 changed files with 19 additions and 2 deletions

View File

@ -112,7 +112,9 @@ public class RESIST_Lugano_TUFixed
new TUValueEnum(){TUValueType="01",TumorIdentificationSimple="TUMIDENT",TumorIdentificationFullName="Tumor Identification",TumorIdentificationResult="TARGET",TumorIdentificationResultType="TARGET"},
new TUValueEnum(){TUValueType="01",TumorIdentificationSimple="TUMIDENT",TumorIdentificationFullName="Tumor Identification",TumorIdentificationResult="NON-TARGET",TumorIdentificationResultType="NON-TARGET"},
new TUValueEnum(){TUValueType="01",TumorIdentificationSimple="TUMIDENT",TumorIdentificationFullName="Tumor Identification",TumorIdentificationResult="NEW",TumorIdentificationResultType="NEW"},
new TUValueEnum(){TUValueType="02",TumorIdentificationSimple="TUSPLIT",TumorIdentificationFullName="Tumor Split",TumorIdentificationResult="TARGET",TumorIdentificationResultType="TARGET"}
new TUValueEnum(){TUValueType="02",TumorIdentificationSimple="TUSPLIT",TumorIdentificationFullName="Tumor Split",TumorIdentificationResult="TARGET",TumorIdentificationResultType="TARGET"},
new TUValueEnum(){TUValueType="02",TumorIdentificationSimple="TUSPLIT",TumorIdentificationFullName="Tumor Split",TumorIdentificationResult="NON-TARGET",TumorIdentificationResultType="NON-TARGET"},
new TUValueEnum(){TUValueType="02",TumorIdentificationSimple="TUSPLIT",TumorIdentificationFullName="Tumor Split",TumorIdentificationResult="NEW",TumorIdentificationResultType="NEW"}
}
;
}
@ -1143,7 +1145,22 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
//分裂的病灶
if (lesion.SplitRowId != null && lesion.SplitRowId != Guid.Empty)
{
switch (lesion.LessionType)
{
case LesionType.TargetLesion:
lesionTypeIndex = 3;
break;
case LesionType.NonTargetLesions:
lesionTypeIndex = 4;
break;
case LesionType.NewLesions:
lesionTypeIndex = 5;
break;
}
}
else
{