tj
2025-04-11 f71719bf3e2b433b790cfaa83265611faf1f1a1c
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
package com.mzl.flower.config.pay;
 
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
@Data
@Configuration
@ConfigurationProperties(prefix = "wechat-app")
public class WechatAppProperties {
 
    /**
     * 商户号
     */
    private String merchantId;
 
    /**
     * 商户密钥
     */
    private String merchantKey;
 
    /**
     * appId
     */
    private String appid;
 
    /**
     *密钥
     */
    private String secret;
 
    /**
     *
     */
    private String tradeType;
 
    /**
     * 回调地址
     */
    private String notifyUrl;
 
}