package com.nuvole.util.pay.allinPay.syb;
|
|
/**
|
* 通联支付地址(收银宝)
|
*
|
* @Author: lc
|
* @Date: 2019/8/27 14:57
|
*/
|
|
public class SybPayUrl {
|
|
|
/**
|
* 商户订单查询接口
|
*/
|
public static final String MERCHANT_PAY_RESULT = "https://vsp.allinpay.com/apiweb/tranx/queryorder";
|
|
/**
|
* 统一下单接口
|
*/
|
public static String UNIFIED_ORDER_URL = "https://vsp.allinpay.com/apiweb/unitorder/pay";
|
|
/**
|
* 通联支付B扫C下单接口地址
|
*/
|
public static String ORDER_B_SWEEP_C_URL = "https://vsp.allinpay.com/apiweb/unitorder/scanqrpay";
|
|
//收银宝进件接口前缀
|
// private static String SYB_PREFIX = "https://vsp.allinpay.com/cusapi";
|
private static String SYB_PREFIX = "https://syb-test.allinpay.com/vsppcusapi";
|
/**
|
* 收银包商户进件URL
|
*/
|
public static String SYB_MERCHANT_ADD_URL = SYB_PREFIX + "/merchantapi/add";
|
/**
|
* 商户审核状态查询
|
*/
|
public static String SYB_MERCHANT_ADD_QUERYSTATUS_URL = SYB_PREFIX + "/merchantapi/querystatus";
|
/**
|
* 合规性状态查询接口
|
*/
|
public static String SYB_MERCHANT_ADD_QUERYCUSRGC_URL = SYB_PREFIX + "/merchantapi/querycusrgc";
|
/**
|
* 合规性审核补录统一h5接口
|
*/
|
public static String SYB_MERCHANT_ADD_REPAIRCUSRGC_URL = SYB_PREFIX + "/merchantapi/repaircusrgc";
|
|
/**
|
* 微信/支付宝认证状态查询
|
*/
|
public static String SYB_MERCHANT_ADD_QUERYWXVERIFYSTATE_URL = SYB_PREFIX + "/merchantapi/querywxverifystate";
|
|
/**
|
* 认证统一H5
|
*/
|
public static String SYB_MERCHANT_ADD_WXVERIFY_URL = SYB_PREFIX + "/merchantapi/wxverify";
|
|
/**
|
* 无纸化进件协议签约状态查询
|
*/
|
public static String SYB_MERCHANT_ADD_QUERYELECTSIGN_URL = SYB_PREFIX + "/merchantapi/queryelectsign";
|
|
/**
|
* 无纸化进件协议重发接口
|
*/
|
public static String SYB_MERCHANT_ADD_ELECTSIGN_URL = SYB_PREFIX + "/merchantapi/electsign";
|
/**
|
* 无纸化进件电子协议URL接口查询
|
*/
|
public static String SYB_MERCHANT_ADD_QUERYELECTURL_URL = SYB_PREFIX + "/merchantapi/queryelecturl";
|
/**
|
* 收银宝文件上传URL
|
*/
|
public static String SYB_FILE_UPLOAD_URL = SYB_PREFIX + "/sybupfile";
|
|
|
/**
|
* 根据授权码(付款码)获取用户ID 地址
|
*/
|
public static final String SERVICE_AUTHCODE2USERID_URL = "https://vsp.allinpay.com/apiweb/unitorder/authcodetouserid";
|
|
/**
|
* 通联查询支付结果接口
|
*/
|
public static String PAY__RESULT_B_SWEEP_C_URL = "https://vsp.allinpay.com/apiweb/unitorder/query";
|
|
/**
|
* 动态C扫B支付回调地址
|
*/
|
public static String ACTIVE_C_SWEEP_B_URL_SYB = "/v1/web/payBack/activeCsweepBBack";
|
public static String ACTIVE_C_SWEEP_B_URL_WX = "/v1/web/payBack/activeCsweepBBackWx";
|
|
/**
|
* 通联对面付总公司重定向地址
|
*/
|
public static String F2F_HEAD_BACK_URL = "https://syb.allinpay.com/sappweb/usertrans/cuspay";
|
|
/**
|
* 银联云闪付授权userid
|
*/
|
public static final String UNION_AUTH_URL = "https://vsp.allinpay.com/apiweb/unitorder/authcodetouserid";
|
|
/**
|
* 银联云闪付支付
|
*/
|
public static final String UNION_PAY_URL = "https://vsp.allinpay.com/apiweb/unitorder/pay";
|
|
|
/**
|
* 通联接口地址
|
*/
|
public static String ALLINPAY_URL = "https://vsp.allinpay.com";
|
// public static String ALLINPAY_URL = "https://syb-test.allinpay.com";
|
|
/**
|
* 申请签约(通联快捷支付)
|
*/
|
public static String AGREEAPPLY_URL = ALLINPAY_URL + "/apiweb/qpay/agreeapply";
|
|
/**
|
* 申请确认(通联快捷支付)
|
*/
|
public static String AGREECONFIRM_URL = ALLINPAY_URL + "/apiweb/qpay/agreeconfirm";
|
|
/**
|
* 支付申请重发验证短信(通联快捷支付)
|
*/
|
public static String AGREEMS_URL = ALLINPAY_URL + "/apiweb/qpay/agreesms";
|
|
/**
|
* 支付申请(通联快捷支付)
|
*/
|
public static String PAYAPPLYAGREE_URL = ALLINPAY_URL + "/apiweb/qpay/payapplyagree";
|
|
/**
|
* 支付确认(通联快捷支付)
|
*/
|
public static String PAYAGREECONFIRM_URL = ALLINPAY_URL + "/apiweb/qpay/payagreeconfirm";
|
|
/**
|
* 重发支付短信(通联快捷支付)
|
*/
|
public static String PAYSMSAGREE_URL = ALLINPAY_URL + "/apiweb/qpay/paysmsagree";
|
|
/**
|
* 查询签约信息(通联快捷支付)
|
*/
|
public static String AGREEQUERY_URL = ALLINPAY_URL + "/apiweb/qpay/agreequery";
|
|
/**
|
* 银行卡解绑(通联快捷支付)
|
*/
|
public static String UNBIND_URL = ALLINPAY_URL + "/apiweb/qpay/unbind";
|
|
/**
|
* 查询交易结果
|
*/
|
public static String QUERY_URL = ALLINPAY_URL + "/apiweb/qpay/query";
|
|
/**
|
* 商城回调通知
|
*/
|
public static String SHOP_CALL_BACK = "http://10.94.2.161:9010/service-shop/v1/shop/web/payBack/storeGoodsPayBack";
|
}
|