fix
Helius
2022-05-24 b6addbdc96eb4fba4c7b3a295ed9d47020f74ceb
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() {