|
@@ -23,6 +23,7 @@ public class QCCatalogue {
|
|
protected ThreadLocal<String> info = new ThreadLocal<String>();
|
|
protected ThreadLocal<String> info = new ThreadLocal<String>();
|
|
|
|
|
|
public void execute(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
public void execute(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
|
+ long t1 = System.currentTimeMillis();
|
|
if (outputInfo.getResult().get(className) != null) {
|
|
if (outputInfo.getResult().get(className) != null) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -35,8 +36,10 @@ public class QCCatalogue {
|
|
start(inputInfo, outputInfo);
|
|
start(inputInfo, outputInfo);
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
variablePreset("-1", "");
|
|
variablePreset("-1", "");
|
|
- log.info(e.getMessage() + "......类名:" + this.className);
|
|
|
|
|
|
+ log.error(e.getMessage() + "......类名:" + this.className);
|
|
}
|
|
}
|
|
|
|
+ long t2 = System.currentTimeMillis();
|
|
|
|
+ log.error(inputInfo.getMedicalRecordInfoDoc().getStructureMap().get("behospitalCode") + "-----" + className + "(规则) 耗时:" + (t2 - t1));
|
|
insertOpt(outputInfo);
|
|
insertOpt(outputInfo);
|
|
}
|
|
}
|
|
|
|
|