liulin
2025-07-02 b9f0f641b85bbbfe74fc23efe4f4965586d9e3af
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
package com.lunhan.water.common.config;
 
import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
 
@Data
@Configuration
public class WeiXinPayConfig {
    @Value("${pay.weiXin.merchantId}")
    public String merchantId;
 
    @Value("${pay.weiXin.merchantKey}")
    public String merchantKey;
 
    @Value("${pay.weiXin.keyPath}")
    public String keyPath;
 
    @Value("${pay.weiXin.privateKeyPath}")
    public String privateKeyPath;
 
    @Value("${pay.weiXin.certificateSn}")
    public String certificateSn;
 
    @Value("${pay.weiXin.appID}")
    public String appID;
 
    @Value("${pay.weiXin.notifyBasicUrl}")
    private String notifyBasicUrl;
}