mitao
2024-07-08 022a7ff7abf82cd2546e18071ade5228b4e2339f
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.sinata.config.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Component;
 
/**
 * 配置参数
 *
 * @author: KingKong
 * @create: 2018-12-17 14:36
 **/
@Data
@Component
@Configuration
@ConfigurationProperties(prefix = "pay")
public class PayProperties {
 
    /**
     * 应用私钥
     */
    private String aliPrivateKey;
    /**
     * 支付宝公钥
     */
    private String aliPublicKey;
    private String aliAppId;
    private String aliNotifyUrl;
    private String aliReturnUrl;
    /**
     * 支付宝账号
     */
    private String aliSellerId;
 
 
    /**
     * 微信appId
     */
    private String wxAppId;
    /**
     * 商户号
     */
    private String wxMchId;
    /**
     * 微信key
     */
    private String wxPayKey;
    /**
     * 支付回调地址
     */
    private String wxNotifyUrl;
    /**
     * 支付回显地址
     */
    private String wxReturnUrl;
    /**
     * 微信secret
     */
    private String wxAppSecret;
    /**
     * 微信公众号secret
     */
    private String wxPublicSecretKey;
 
}