Config.php
943 Bytes
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
<?php
namespace WebPlugin\Pay\Chinabank;
/**
* 网银支付接口
* Enter description here ...
* @author smile
*
*/
class Config
{
/**
* 支付地址(方式3)
* Enter description here ...
* @var String
*/
var $payUrl = "https://pay3.chinabank.com.cn/PayGate";
/**
* 商户的回调地址
* Enter description here ...
* @var String
*/
var $merchantUrl = "notice/chinabank";
/**
* 异步通知
*/
var $autoReceiveUrl = "notice/chinabankautorev";
/**
* 商户ID
* Enter description here ...
* @var unknown_type
*/
var $merchantAcctId = "";
/**
* 分行号
* Enter description here ...
* @var String
*/
var $branchID = "";
/**
* 商户Key
* Enter description here ...
* @var string
*/
var $sp_key = "";
/**
* 币种
* Enter description here ...
* @var unknown_type
*/
var $feeType = "CNY";
}