add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
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
33
34
35
36
37
38
39
40
41
42
package com.dobbinsoft.fw.pay.config;
 
/**
 * ClassName: MerchantPropertiesHolder
 * Description: TODO
 *
 * @author: e-weichaozheng
 * @date: 2021-04-20
 */
public interface PayProperties {
 
    /***************** 微信支付所需配置 *********************/
 
    public String getWxAppId();
 
    public String getWxMchId();
 
    public String getWxMchKey();
 
    public String getWxNotifyUrl();
 
    public byte[] getWxCert();
 
    /***************** 阿里支付所需配置 *********************/
 
    public default boolean getAliDynamic() {
        return false;
    }
 
    public String getAliGateway();
 
    public String getAliAppId();
 
    public String getAliMchPrivateKey();
 
    public String getAliAliPublicKey();
 
    public String getAliNotifyUrl();
 
    /***************** 配置预热 将部分配置直接放入缓存 *********************/
 
}