| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.cyksj.config.zfb;
- import lombok.Getter;
- import lombok.Setter;
- /*
- *项目名: netflix
- *文件名: BaseZfbConfig
- *创建者: JavaZou
- *创建时间:2022/11/2 10:38
- */
- @Getter
- @Setter
- public class BaseZfbConfig {
- /**
- * 请求支付宝的网关地址
- */
- public static String url = "https://openapi.alipay.com/gateway.do";
- /**
- * 参数返回格式
- */
- public static String format = "JSON";
- /**
- * 编码格式
- */
- public static String charset = "UTF-8";
- /**
- * 签名算法
- */
- public static String signType = "RSA2";
- public static String returnUrl = "yinhe/web/ticket";
- //前端成功页面
- public static String SUCCESS_URL = "success/";
- //手机支付 h5默认跳转 成功页
- public static String DEFAULT_URL = "ticket";
- public static String zfb_register_login_return_url = "yinhe/web/registerTicket";
- public static String notifyUrl = "applets/order/prepay/zfb/notify";
- public static String upgradeNotifyUrl = "applets/order/prepay/zfb/upgrade/notify";
- public static String zfb_register_notify_url = "applets/register/prepay/zfb/notify";
- public static String wholesaleNotifyUrl = "applet/wholesale/zfb/notify";
- public static String wholesaleDepositNotifyUrl = "applet/wholesale/deposit/zfb/notify";
- public static String userMirrorOpenShopNotifyUrl = "applets/mirror/shop/prepay/zfb/notify";
- public static String spotifyUpgradeNotifyUrl = "applets/spotify/prepay/zfb/upgrade/notify";
- /**
- * qr_pay_mode PC扫码支付的方式。 跳转模式
- */
- public static String qrPayMode_redirect = "2";
- /**
- * qr_pay_mode PC扫码支付的方式。订单码 默认4嵌入
- */
- public static String qrPayMode_orderCode = "4";
- /**
- * 支付宝手机支付
- */
- public static String ONE_STR = "1";
- /**
- * 支付网页支付
- */
- public static String TWO_STR = "2";
- }
|