PayExInfo.php
2.1 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
namespace Lackoxygen\Customs\Request;
use Lackoxygen\Customs\Request\Struct\PayExchangeInfoHead;
use Lackoxygen\Customs\Request\Struct\PayExchangeInfoItem;
class PayExInfo extends Request
{
/**
* @return mixed
*/
public function getSessionID()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param string 海关发起请求时,平台接收的会话ID。
*/
public function setSessionID(): void
{
$this->mSet(__FUNCTION__, func_get_arg(0));
}
/**
* @return mixed
*/
public function getPayExchangeInfoHead()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param mixed $payExchangeInfoHead 支付原始数据表头
*/
public function setPayExchangeInfoHead(PayExchangeInfoHead $payExchangeInfoHead): void
{
$this->mSet(__FUNCTION__, $payExchangeInfoHead);
}
/**
* @return mixed
*/
public function getPayExchangeInfoLists()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param PayExchangeInfoItem $payExchangeInfoItem 支付原始数据表体
*/
public function pushPayExchangeInfoLists(PayExchangeInfoItem $payExchangeInfoItem): void
{
$this->mPush(__FUNCTION__, $payExchangeInfoItem);
}
/**
* @return mixed
*/
public function getServiceTime()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param string 调用时的系统时间
*/
public function setServiceTime(): void
{
$this->mSet(__FUNCTION__, (string)func_get_arg(0));
}
/**
* @return mixed
*/
public function getCertNo()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param string 证书编号
*/
public function setCertNo(): void
{
$this->mSet(__FUNCTION__, (string)func_get_arg(0));
}
/**
* @return mixed
*/
public function getSignValue()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param string 签名结果值
*/
public function setSignValue(): void
{
$this->mSet(__FUNCTION__, (string)func_get_arg(0));
}
}