소스 검색

变更日志打印的位置

lighter 2 년 전
부모
커밋
4dea3df2bb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/thyyxxk/webserver/service/dictionary/HisWjwMatchService.java

+ 1 - 1
src/main/java/thyyxxk/webserver/service/dictionary/HisWjwMatchService.java

@@ -102,7 +102,6 @@ public class HisWjwMatchService {
     }
 
     public String executeMatchAction(HisWjwMatchEntity entity) {
-        log.info("【操作员:{}】匹配卫健委/国临字典:{}", TokenUtil.getTokenUserId(), JSONObject.toJSONString(entity));
         if (entity.getLabel().equals("surgery_chargeCode")) {
             if (null != entity.getChargeCode()) {
                 StringBuilder codeBuilder = new StringBuilder();
@@ -123,6 +122,7 @@ public class HisWjwMatchService {
             dao.updateDateAndOper(entity.getCode(), TokenUtil.getTokenUserId());
         }
         dao.executeMatchAction(entity);
+        log.info("【操作员:{}】匹配卫健委/国临字典:{}", TokenUtil.getTokenUserId(), JSONObject.toJSONString(entity));
         return StringUtil.isBlank(entity.getWjwCode()) ? "撤销匹配成功" : "匹配成功";
     }