| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 | | package cc.mrbird.febs.pay.properties; |  |   |  | import lombok.Data; |  | import org.springframework.boot.context.properties.ConfigurationProperties; |  |   |  | /** |  |  * @author wzy |  |  * @date 2023-04-07 |  |  **/ |  | @Data |  | @ConfigurationProperties(prefix = "pay.wx") |  | public class WxPayProperties { |  |   |  |     /** |  |      * 设置微信公众号或者小程序等的appid |  |      */ |  |     private String appId; |  |   |  |     /** |  |      * 微信支付商户号 |  |      */ |  |     private String mchId; |  |   |  |     /** |  |      * 微信支付商户密钥 |  |      */ |  |     private String mchKey; |  |   |  |     private String keyPath; |  |   |  |     private String noticeUrl; |  | } | 
 |