ruoyi-modules/ruoyi-system/src/main/java/org/dromara/system/uitil/HttpUtils.java
@@ -151,9 +151,9 @@ * @param parameter * @throws Exception */ public static void sendDeleteRequest(String url, String parameter) throws Exception { public static void sendDeleteRequest(String url, String parameter, String password) throws Exception { // 拼接URL和参数 String deleteUrl = url + "/" + parameter; String deleteUrl = url + "/" + parameter + "/" + password; // 创建URL对象和HttpURLConnection对象 URL obj = new URL(deleteUrl);