|
@@ -40,6 +40,8 @@ public class ConceptTest {
|
|
|
private static final String other_path = "E:\\git\\docs\\医学知识库\\其他史\\其他史-邵青华0619.xls";
|
|
|
private static final String zdyj_path = "E:\\git\\docs\\医学知识库\\诊断依据\\全部依据\\带数字的词\\带数字的词.xlsx";
|
|
|
private static final String zdyjqd_path = "E:\\git\\docs\\医学知识库\\诊断依据\\全部依据\\其他有问题的词\\诊断依据问题词0701.xlsx";
|
|
|
+ private static final String pacsresult_path = "E:\\git\\docs\\医学知识库\\诊断依据\\全部依据\\其他有问题的词\\诊断依据问题词0702.xlsx";
|
|
|
+ private static final String lisresult_path = "E:\\git\\docs\\医学知识库\\化验\\化验结果_诊断依据0702.xlsx";
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
try {
|
|
@@ -48,7 +50,9 @@ public class ConceptTest {
|
|
|
// insertPart();
|
|
|
// insertVital();
|
|
|
// insertLis();
|
|
|
+ insertLisResult();
|
|
|
// insertPacs();
|
|
|
+// insertPacsResult();
|
|
|
// insertDisease();
|
|
|
// insertDept();
|
|
|
// insertDrug();
|
|
@@ -58,7 +62,7 @@ public class ConceptTest {
|
|
|
// insertStandardInfo();
|
|
|
// validateSplit();
|
|
|
// insertZdyj();
|
|
|
- insertZdyjQt();
|
|
|
+// insertZdyjQt();
|
|
|
|
|
|
// insertRelationSymptom();
|
|
|
|
|
@@ -174,6 +178,14 @@ public class ConceptTest {
|
|
|
insertOneColumn(zdyjqd_path, 4, "70", "诊断依据其他");
|
|
|
}
|
|
|
|
|
|
+ public static void insertPacsResult() throws Exception {
|
|
|
+ insertOneColumn(pacsresult_path, 4, "17", "辅检结果");
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void insertLisResult() throws Exception {
|
|
|
+ insertOneColumn(lisresult_path, 4, "14", "化验结果");
|
|
|
+ }
|
|
|
+
|
|
|
public static void insertOneColumn(String path, int columnIndex, String typeId, String typeName) throws Exception {
|
|
|
insertOneColumn(0, path, columnIndex, typeId, typeName);
|
|
|
}
|