WechatPayProperties.java 562 B

123456789101112131415161718192021222324252627282930313233
  1. package com.kyl.config;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. /**
  5. * @ClassName WechatPayProperties.java
  6. */
  7. @Data
  8. @ConfigurationProperties(prefix = "kyl.framework.trade.wechatpay")
  9. public class WechatPayProperties {
  10. //appId
  11. String appid;
  12. //商户号
  13. String mchId;
  14. //私钥字符串
  15. String privateKey;
  16. //商户证书序列号
  17. String mchSerialNo;
  18. //V3密钥
  19. String apiV3Key;
  20. //请求地址
  21. String domain;
  22. //回调地址
  23. String notifyUrl;
  24. }