fix
Helius
2021-11-09 199cb3fb7a7ec4041ecd487f8db9f0360b40391e
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() {