From de6605cf7988050e0d1c6261325c4e2e9f097788 Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期二, 14 十月 2025 12:00:05 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/util/AppUserUtil.java |   38 --------------------------------------
 1 files changed, 0 insertions(+), 38 deletions(-)

diff --git a/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/util/AppUserUtil.java b/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/util/AppUserUtil.java
index 8f6be83..defb32b 100644
--- a/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/util/AppUserUtil.java
+++ b/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/util/AppUserUtil.java
@@ -15,45 +15,7 @@
 public class AppUserUtil {
 
 	private static QYTConfig qytConfig = SpringContextsUtil.getBean(QYTConfig.class);
-	
 
-	/**
-	 * 发送短信验证码
-	 * @param phone
-	 * @return
-	 * @throws Exception
-	 */
-	public static String queryCaptcha(String phone) throws Exception{
-		HttpRequest post = HttpUtil.createPost(qytConfig.getChuxingUrl() + "/user-server/base/queryCaptcha");
-		post.form("phone", phone);
-		HttpResponse execute = post.execute();
-		if(200 != execute.getStatus()){
-			log.error("打车系统-发送验证码失败:{}", execute.body());
-			return null;
-		}
-		return execute.body();
-	}
-	
-	/**
-	 * 验证短信验证码
-	 * @param phone
-	 * @param code
-	 * @return
-	 * @throws Exception
-	 */
-	public static Boolean checkCaptcha(String phone, String code) throws Exception{
-		HttpRequest post = HttpUtil.createPost(qytConfig.getChuxingUrl() + "/user-server/base/user/checkCaptcha");
-		post.header("device", "driving");
-		post.form("phone", phone);
-		post.form("code", code);
-		HttpResponse execute = post.execute();
-		if(200 != execute.getStatus()){
-			log.error("打车系统-验证短信验证码:{}", execute.body());
-			return null;
-		}
-		return Boolean.valueOf(execute.body());
-	}
-	
 	
 	/**
 	 * 添加用户

--
Gitblit v1.7.1