fix
Helius
2021-07-27 3c2f3d625f84373bf88dca1a322d5fdd67ab0fd0
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() {