From 0c4bb6e9d1224e5f983d36457795cef3ad8f4563 Mon Sep 17 00:00:00 2001 From: daxpay Date: Thu, 25 Jul 2024 12:26:01 +0800 Subject: [PATCH 1/4] =?UTF-8?q?doc=20=E6=B7=BB=E5=8A=A0gitcode=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index deb66b16..cd0c8079 100644 --- a/README.md +++ b/README.md @@ -42,11 +42,11 @@ ### 项目地址 -| 项目 | GITEE | GITHUB | -|---------|---------------------------------------------|-------------------------------------------------| -| 后端地址 | [GITEE](https://gitee.com/dromara/dax-pay) | [GITHUB](https://github.com/dromara/dax-pay) | -| Web前端地址 | [GITEE](https://gitee.com/bootx/dax-pay-ui) | [GITHUB](https://github.com/xxm1995/dax-pay-ui) | -| H5前端地址 | [GITEE](https://gitee.com/bootx/dax-pay-h5) | [GITHUB](https://github.com/xxm1995/dax-pay-h5) | +| 项目 | GITEE | GITHUB |GITCODE | +|---------|---------------------------------------------|-------------------------------------------------|---------------------------------------------| +| 后端地址 | [GITEE](https://gitee.com/dromara/dax-pay) | [GITHUB](https://github.com/dromara/dax-pay) | [GITCODE](https://gitcode.com/dromara/dax-pay) | +| Web前端地址 | [GITEE](https://gitee.com/bootx/dax-pay-ui) | [GITHUB](https://github.com/xxm1995/dax-pay-ui) | [GITCODE](https://github.com/daxpay/dax-pay-ui) | +| H5前端地址 | [GITEE](https://gitee.com/bootx/dax-pay-h5) | [GITHUB](https://github.com/xxm1995/dax-pay-h5) | [GITCODE](https://github.com/daxpay/dax-pay-h5) | ## 🏬 系统演示 From a9d49324085740161a2088a2257ede679caacb2f Mon Sep 17 00:00:00 2001 From: HerodotusSoftware Date: Tue, 30 Jul 2024 12:27:54 +0800 Subject: [PATCH 2/4] =?UTF-8?q?update:=20=E6=9B=B4=E6=96=B0=E6=96=87?= =?UTF-8?q?=E4=BB=B6=20pom.xml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bootx-platform/bootx-commons/common-swagger/pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/bootx-platform/bootx-commons/common-swagger/pom.xml b/bootx-platform/bootx-commons/common-swagger/pom.xml index 84d59be3..b0ae8306 100644 --- a/bootx-platform/bootx-commons/common-swagger/pom.xml +++ b/bootx-platform/bootx-commons/common-swagger/pom.xml @@ -23,6 +23,7 @@ swagger-ui + org.webjars webjars-locator-core From da07ef74f2dbe88715b328c742584914728ca907 Mon Sep 17 00:00:00 2001 From: qq_15697011 Date: Fri, 2 Aug 2024 11:27:58 +0800 Subject: [PATCH 3/4] doc: add demo config doc --- .../single/demo/configuration/DaxPayKitConfiguration.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/daxpay-single-demo/src/main/java/cn/daxpay/single/demo/configuration/DaxPayKitConfiguration.java b/daxpay-single-demo/src/main/java/cn/daxpay/single/demo/configuration/DaxPayKitConfiguration.java index 60d9c99d..c9daada2 100644 --- a/daxpay-single-demo/src/main/java/cn/daxpay/single/demo/configuration/DaxPayKitConfiguration.java +++ b/daxpay-single-demo/src/main/java/cn/daxpay/single/demo/configuration/DaxPayKitConfiguration.java @@ -27,10 +27,10 @@ public class DaxPayKitConfiguration { // @EventListener(webstarteve.class) public void initDaxPayKit(){ DaxPayConfig config = DaxPayConfig.builder() - .serviceUrl(daxPayDemoProperties.getServerUrl()) - .signType(daxPayDemoProperties.getSignType()) - .signSecret(daxPayDemoProperties.getSignSecret()) - .reqTimeout(daxPayDemoProperties.getReqTimeout()) + .serviceUrl(daxPayDemoProperties.getServerUrl()) // 服务地址 + .signType(daxPayDemoProperties.getSignType()) // 签名类型 + .signSecret(daxPayDemoProperties.getSignSecret()) // 签名密钥 + .reqTimeout(daxPayDemoProperties.getReqTimeout()) // 超时时间 .build(); DaxPayKit.initConfig(config); } From 14ac7e04ff6236b9d79cc5d93454c98b8445b4b8 Mon Sep 17 00:00:00 2001 From: XYW1171736840 Date: Fri, 2 Aug 2024 11:35:14 +0800 Subject: [PATCH 4/4] =?UTF-8?q?update:=20=E6=9B=B4=E6=96=B0=E6=96=87?= =?UTF-8?q?=E4=BB=B6=20CaptchaService.java=20=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../platform/baseapi/core/captcha/service/CaptchaService.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootx-platform/bootx-services/service-baseapi/src/main/java/cn/bootx/platform/baseapi/core/captcha/service/CaptchaService.java b/bootx-platform/bootx-services/service-baseapi/src/main/java/cn/bootx/platform/baseapi/core/captcha/service/CaptchaService.java index ff3abf90..f601d460 100644 --- a/bootx-platform/bootx-services/service-baseapi/src/main/java/cn/bootx/platform/baseapi/core/captcha/service/CaptchaService.java +++ b/bootx-platform/bootx-services/service-baseapi/src/main/java/cn/bootx/platform/baseapi/core/captcha/service/CaptchaService.java @@ -80,6 +80,8 @@ public class CaptchaService { /** * 验证手机发送的验证码是否还在有效时间内 + * @param phone 手机号 + * @param type 业务类型, 用来区分不同业务的短信验证码 */ public boolean existsSmsCaptcha(String phone, String type) { return redisClient.exists(getSmsCaptchaPrefix(type) + phone);