| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.ylx.common.config;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * @author jianlong
- * @date 2024-04-02 18:20
- */
- @Data
- @Component
- @ConfigurationProperties(prefix = "wx")
- public class WxPayConfig {
- /**
- * appid.
- */
- private String appId;
- /**
- * appSecret.
- */
- private String appSecret;
- /**
- * 微信支付商户号.
- */
- private String mchId;
- /**
- * 微信支付商户密钥.
- */
- private String mchKey;
- /**
- * 异步回调地址
- */
- private String notifyUrl;
- /**
- * 退款异步回调地址
- */
- private String refundNotify;
- /**
- * 证书地址
- */
- private String certPath;
- /**
- * 证书密钥地址
- */
- private String certKeyPath;
- /**
- * 微信平台证书
- */
- private String platFormPath;
- private String msgDataFormat;
- }
|