From 8d6ef24217033e13b356502f2ade8737a43cce2b Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期六, 19 四月 2025 17:52:15 +0800
Subject: [PATCH] MQ消息队列监管平台数据上传

---
 ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/MD5Util.java |   48 ------------------------------------------------
 1 files changed, 0 insertions(+), 48 deletions(-)

diff --git a/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/MD5Util.java b/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/MD5Util.java
index 1037459..e13282a 100644
--- a/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/MD5Util.java
+++ b/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/utils/MD5Util.java
@@ -73,52 +73,4 @@
         return "";
     }
  
-    /**
-     * 获取32位大写
-     *
-     * @param str
-     * @return
-     */
-    public static String getMD5_32_upper(String str) {
-        if (StringUtils.isNotEmpty(str))
-            return getMD5(str).toUpperCase();
-        return "";
-    }
- 
-    /**
-     * 获取32位小写
-     *
-     * @param str
-     * @return
-     */
-    public static String getMD5_32_lower(String str) {
-        if (StringUtils.isNotEmpty(str))
-            return getMD5(str).toLowerCase();
-        return "";
-    }
- 
-    /**
-     * 获取16位大写
-     *
-     * @param str
-     * @return
-     */
-    public static String getMD5_16_upper(String str) {
-        if (StringUtils.isNotEmpty(str))
-            return getMD5(str).substring(8, 24).toUpperCase();
-        return "";
-    }
- 
-    /**
-     * 获取16位小写
-     *
-     * @param str
-     * @return
-     */
-    public static String getMD5_16_lower(String str) {
-        if (StringUtils.isNotEmpty(str))
-            return getMD5(str).substring(8, 24).toLowerCase();
-        return "";
-    }
- 
 }
\ No newline at end of file

--
Gitblit v1.7.1