From 42c4f24c54f5c0f45606befa36c5ef98d6f4ce12 Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Sun, 20 Jul 2025 23:27:38 +0800
Subject: [PATCH] fix: 调整店铺名称

---
 oying-system/src/main/java/com/oying/modules/security/rest/VerificationController.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/security/rest/VerificationController.java b/oying-system/src/main/java/com/oying/modules/security/rest/VerificationController.java
index 612c2b6..cd6d3d6 100644
--- a/oying-system/src/main/java/com/oying/modules/security/rest/VerificationController.java
+++ b/oying-system/src/main/java/com/oying/modules/security/rest/VerificationController.java
@@ -44,7 +44,7 @@
         String verification = (int) ((Math.random() * 9 + 1) * 100000) + "";
         redisUtils.set(uuid, verification, time);
         String message = "您的验证码为:" + verification + ",请勿泄露于他人!";
-        SendMessageUtils.sendMsg(phone, message, properties);
+        SendMessageUtils.sendMsg(properties.getUrlSendMsg(), phone, message, properties);
         return ResponseEntity.ok(R.success(uuid));
     }
 }

--
Gitblit v1.9.3