WxPayProperties.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package com.example.config;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import org.springframework.boot.context.properties.ConfigurationProperties;
  5. /**
  6. * wxpay pay properties
  7. *
  8. * @author Binary Wang
  9. */
  10. @ConfigurationProperties(prefix = "wx.pay")
  11. public class WxPayProperties {
  12. /**
  13. * 设置微信公众号或者小程序等的appid
  14. */
  15. private String appId;
  16. /**
  17. * 微信支付商户号
  18. */
  19. private String mchId;
  20. /**
  21. * 微信支付商户密钥
  22. */
  23. private String mchKey;
  24. /**
  25. * 服务商模式下的子商户公众账号ID,普通模式请不要配置,请在配置文件中将对应项删除
  26. */
  27. private String subAppId;
  28. /**
  29. * 服务商模式下的子商户号,普通模式请不要配置,最好是请在配置文件中将对应项删除
  30. */
  31. private String subMchId;
  32. /**
  33. * apiclient_cert.p12文件的绝对路径,或者如果放在项目中,请以classpath:开头指定
  34. */
  35. private String keyPath;
  36. public String getAppId() {
  37. return this.appId;
  38. }
  39. public void setAppId(String appId) {
  40. this.appId = appId;
  41. }
  42. public String getMchId() {
  43. return mchId;
  44. }
  45. public void setMchId(String mchId) {
  46. this.mchId = mchId;
  47. }
  48. public String getMchKey() {
  49. return mchKey;
  50. }
  51. public void setMchKey(String mchKey) {
  52. this.mchKey = mchKey;
  53. }
  54. public String getSubAppId() {
  55. return subAppId;
  56. }
  57. public void setSubAppId(String subAppId) {
  58. this.subAppId = subAppId;
  59. }
  60. public String getSubMchId() {
  61. return subMchId;
  62. }
  63. public void setSubMchId(String subMchId) {
  64. this.subMchId = subMchId;
  65. }
  66. public String getKeyPath() {
  67. return this.keyPath;
  68. }
  69. public void setKeyPath(String keyPath) {
  70. this.keyPath = keyPath;
  71. }
  72. @Override
  73. public String toString() {
  74. return ToStringBuilder.reflectionToString(this,
  75. ToStringStyle.MULTI_LINE_STYLE);
  76. }
  77. }