| 123456789101112131415161718192021222324252627282930 |
- package com.cyksj.model.entity;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @author zwhui
- * @date 2022/10/11 16:14
- */
- @Data
- public class PaypalPayConfig extends BaseEntity implements Serializable {
- /**
- * 域名
- */
- private String host;
- /**
- * 公钥
- */
- private String clientId;
- /**
- * 私钥
- */
- private String clientSecret;
- private String successUrl;
- private String cancelUrl;
- private String mode;
- }
|