zj
2024-06-03 4afe73cb84c5a609662b8b4ee20693de9b86b9a3
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
package com.nq.utils;
 
import org.apache.commons.collections.map.HashedMap;
 
import java.util.Map;
 
/**
 * 支付常量
 * */
public class PayContacts {
 
    public static String TWO_PAY_KEY = "d3b4667307234bd4bd96026ee1864195";
 
 
    public static String TWO_PAY_BASE_URL = "https://api.eggoout.com";
 
 
    /**
     * 第二通道支付接口
     * */
    public static String TWO_PAY_RECHARGE = "/payin/unifiedorder.do";
 
 
//    public static Map<String,String> getTwoPay(String  orderId,String amount){
//        Map<String,String>  map = new HashedMap();
//        map.put("merchantNo","M240106165803005774");
//        map.put("version","1");
//        map.put("merchantOrderId",orderId);
//        map.put("channelCode","YDVIP888");
//        map.put("currency","INR");
//        map.put("subject","股票消费");
//        map.put("email","123123123@outlo.com");
//        map.put("userName","23131");
//        map.put("mobileNo","12312312");
//        map.put("")
//        return map;
//    }
 
 
}