|
@@ -229,8 +229,9 @@ public class DiagnoseFacade extends DiagnoseServiceImpl {
|
|
|
diagnoseWrapper.setId(id);
|
|
|
verifyDataDTO.setId(id); //设置主键返回
|
|
|
// 加载词库数据
|
|
|
- List<LibraryForDiagnoseDTO> libraryForDiagnoseDTOS = libraryInfoFacade.getLibraryForDiagnose();
|
|
|
- Set<String> set = libraryForDiagnoseDTOS.stream().map(row -> row.getName()+ "_"+row.getTypeId()).collect(Collectors.toSet());
|
|
|
+// List<LibraryForDiagnoseDTO> libraryForDiagnoseDTOS = libraryInfoFacade.getLibraryForDiagnose();
|
|
|
+// Set<String> set = libraryForDiagnoseDTOS.stream().map(row -> row.getName()+ "_"+row.getTypeId()).collect(Collectors.toSet());
|
|
|
+ Set<String> set = libraryInfoFacade.getLibraryForDiagnose2();
|
|
|
// 明细数据
|
|
|
List<DiagnoseDetail> diagnoseDetailList = new ArrayList<>();
|
|
|
List<DiagnoseDetail> disFeature = new ArrayList<>(); // 诊断特征
|
|
@@ -298,8 +299,9 @@ public class DiagnoseFacade extends DiagnoseServiceImpl {
|
|
|
// 问题词数据
|
|
|
List<DiagnoseQuestion> diagnoseQuestionList = new ArrayList<>();
|
|
|
// 加载词库数据
|
|
|
- List<LibraryForDiagnoseDTO> libraryForDiagnoseDTOS = libraryInfoFacade.getLibraryForDiagnose();
|
|
|
- Set<String> set = libraryForDiagnoseDTOS.stream().map(row -> row.getName()+ "_"+row.getTypeId()).collect(Collectors.toSet());
|
|
|
+// List<LibraryForDiagnoseDTO> libraryForDiagnoseDTOS = libraryInfoFacade.getLibraryForDiagnose();
|
|
|
+// Set<String> set = libraryForDiagnoseDTOS.stream().map(row -> row.getName()+ "_"+row.getTypeId()).collect(Collectors.toSet());
|
|
|
+ Set<String> set = libraryInfoFacade.getLibraryForDiagnose2();
|
|
|
Long time3 = System.currentTimeMillis();
|
|
|
res.append("加载词库:" + (time3-time2)/1000.0).append("秒,");
|
|
|
Boolean flag = true;
|