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;
|
|
}
|