xuekang
2024-05-11 bac0878349a1db23e7b420ea164e22fb9db73a99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.nuvole.util.pay.allinPay;
 
/**
 * 支付回调地址
 *
 * @Author: lc
 * @Date: 2019/8/27 14:57
 */
 
public class CallBackUrl {
 
    /**
     * 商城统一支付下单回调地址
     */
    public static String unifiedStoreGoodsPayUrl = "/v1/shop/web/payBack/storeGoodsPayBack";
 
    /**
     * 商城统一支付下单回调地址
     */
    public static String storeShareFundRecordPayUrl = "/v1/shop/web/payBack/storeShareFundRecordCallBack";
 
    /**
     * 商城快捷支付下单回调地址
     */
    public static String shortcutStoreGoodsPayUrl = "/v1/shop/web/payBack/shortcutStoreGoodsPayBack";
 
    /**
     * 纯小程序支付回调地址
     */
    public static String xcxGoodsPayUrl = "/v1/shop/web/payBack/xcxGoodsPayBack";
 
    /**
     * 收银宝下,微信支付C扫B扫码付2.0回调url
     */
    public static String sybWxC2BPayUrl = "v1/web/payBack/sybScanPayGoodsPayBack";
    /**
     * H5扫码支付--银行卡快捷支付 回调
     */
    public static String sybKJPayUrl = "v1/web/payBack/scanPayGoodsSybPayBack";
 
    /**
     * psv为支付宝时,支付宝支付 C扫B扫码付回调
     */
    public static String zfbC2BPayUrl = "v1/web/payBack/scanPayGoodsSybPayBack";
 
    /**
     * psv为微信时,支付宝支付 C扫B扫码付回调
     */
    public static String wxC2BPayUrl = "v1/web/payBack/scanPayGoodsPayBack";
 
 
    /**
     * psv为云商通时, 商户线上微信支付回调  sc 商城
     */
    public static String ystScPayUrl = "v1/web/payBack/wechatMerchantBack";
    /**
     * 提现签约通知(接收)
     */
    public static String ystTxSignUrl = "v1/web/payBack/signAcctNotify";
 
 
 
 
}