StripePayConfig.java 522 B

12345678910111213141516171819202122232425262728293031
  1. package com.cyksj.model.entity;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. /**
  5. * @author zwhui
  6. * @date 2022/10/11 16:14
  7. */
  8. @Data
  9. public class StripePayConfig extends BaseEntity implements Serializable {
  10. /**
  11. * 域名
  12. */
  13. private String host;
  14. /**
  15. * 公钥
  16. */
  17. private String publicKey;
  18. /**
  19. * 私钥
  20. */
  21. private String apiKey;
  22. /**
  23. * webhook秘钥
  24. */
  25. private String webhookSecret;
  26. private String successUrl;
  27. private String cancelUrl;
  28. }