From fc3cef7bd2c71ff99767f463531c671a34b7ad21 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期四, 20 二月 2025 17:26:13 +0800 Subject: [PATCH] 增加部分上传监管平台接口和新增退款手续费数据存储 --- ruoyi-service/ruoyi-payment/src/main/java/com/ruoyi/payment/wx/model/WeixinProperties.java | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ruoyi-service/ruoyi-payment/src/main/java/com/ruoyi/payment/wx/model/WeixinProperties.java b/ruoyi-service/ruoyi-payment/src/main/java/com/ruoyi/payment/wx/model/WeixinProperties.java index 058480d..782690b 100644 --- a/ruoyi-service/ruoyi-payment/src/main/java/com/ruoyi/payment/wx/model/WeixinProperties.java +++ b/ruoyi-service/ruoyi-payment/src/main/java/com/ruoyi/payment/wx/model/WeixinProperties.java @@ -13,8 +13,7 @@ */ @ToString @Component -@ConfigurationProperties(prefix = "wx.conf") -@Data +@ConfigurationProperties(prefix = "payment.wx") public class WeixinProperties { /** * 默认开启 @@ -104,4 +103,12 @@ public void setMchId(String mchId) { this.mchId = mchId; } + + public String getCallBackUrl() { + return callBackUrl; + } + + public void setCallBackUrl(String callBackUrl) { + this.callBackUrl = callBackUrl; + } } -- Gitblit v1.7.1