|
@@ -11,6 +11,11 @@ public interface TradeConstant {
|
|
|
|
|
|
static final String MCH_ID = "1692584316";
|
|
|
|
|
|
+ /**
|
|
|
+ * 服务器域名
|
|
|
+ */
|
|
|
+ static final String NOTIFY_DOMAIN = "https://test.chelvc.com/api";
|
|
|
+
|
|
|
/**
|
|
|
*
|
|
|
*/
|
|
@@ -23,12 +28,12 @@ public interface TradeConstant {
|
|
|
/**
|
|
|
* 提现回调通知地址
|
|
|
*/
|
|
|
- static final String WITHDRAW_NOTIFY_URL = "http://igl611.a1.luyouxia.net:20487/maintain/asset/withdraw/notify";
|
|
|
+ static final String WITHDRAW_NOTIFY_URL = NOTIFY_DOMAIN + "/maintain/asset/withdraw/notify";
|
|
|
|
|
|
/**
|
|
|
* 商户入网回调地址
|
|
|
*/
|
|
|
- static final String MERCHANT_NET_IN_NOTIFY_URL = "http://igl611.a1.luyouxia.net:20487/maintain/merchant/apply/notify";
|
|
|
+ static final String MERCHANT_NET_IN_NOTIFY_URL = NOTIFY_DOMAIN + "/maintain/merchant/apply/notify";
|
|
|
|
|
|
/**
|
|
|
* 被分账方入网
|
|
@@ -38,7 +43,7 @@ public interface TradeConstant {
|
|
|
/**
|
|
|
* 转账回调地址
|
|
|
*/
|
|
|
- static final String TRANSFER_NOTIFY_URL = "http://igl611.a1.luyouxia.net:20487/maintain/asset/transfer/notify";
|
|
|
+ static final String TRANSFER_NOTIFY_URL = NOTIFY_DOMAIN + "/maintain/asset/transfer/notify";
|
|
|
|
|
|
/**
|
|
|
* 转账地址
|
|
@@ -48,15 +53,15 @@ public interface TradeConstant {
|
|
|
/**
|
|
|
* 下单通知地址
|
|
|
*/
|
|
|
- static final String ORDER_NOTIFY_URL = "http://igl611.a1.luyouxia.net:20487/maintain/order/notify";
|
|
|
+ static final String ORDER_NOTIFY_URL = NOTIFY_DOMAIN + "/maintain/order/notify";
|
|
|
/**
|
|
|
* 下单回调地址
|
|
|
*/
|
|
|
- static final String ORDER_CALLBACK_URL = "http://igl611.a1.luyouxia.net:20487/maintain/order/notify";
|
|
|
+ static final String ORDER_CALLBACK_URL = NOTIFY_DOMAIN + "/maintain/order/notify";
|
|
|
/**
|
|
|
* 退款回调地址
|
|
|
*/
|
|
|
- static final String ORDER_REFUND_URL = "http://igl611.a1.luyouxia.net:20487/maintain/order/refund/notify";
|
|
|
+ static final String ORDER_REFUND_URL = NOTIFY_DOMAIN + "/maintain/order/refund/notify";
|
|
|
/**
|
|
|
* (直连) 微信小程序
|
|
|
*/
|