xiaoyong931011
2022-05-05 03f20f2541342349fbabf6a59e7e450f50ba3e61
zq-erp/src/main/java/com/matrix/core/tools/MdcUtil.java
@@ -13,12 +13,12 @@
   private static final String TR_KEY = "Tr";
   public static void setRequestId() {
      MDC.clear();
      MDC.remove(TR_KEY);
      MDC.put(TR_KEY, "TR = " + StringUtils.getRandomString(16) + "");
   }
   public static void clearRequestId() {
      MDC.clear();
      MDC.remove(TR_KEY);
   }
   public static String getMdc() {