PayExchangeInfoItem.php
1.9 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
<?php
namespace Lackoxygen\Customs\Request\Struct;
use Lackoxygen\Customs\Utils\Collection;
class PayExchangeInfoItem extends Collection
{
/**
* @return mixed
*/
public function getOrderNo()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param string 交易平台向海关申报订单的的订单编号。需返回原始请求内的所有订单
*/
public function setOrderNo(): void
{
$this->mSet(__FUNCTION__, (string)func_get_arg(0));
}
/**
* @return mixed
*/
public function getGoodsInfo()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param GoodsInfoItem $goodsInfoItem
*/
public function pushGoodsInfo(GoodsInfoItem $goodsInfoItem): void
{
$this->mPush(__FUNCTION__, $goodsInfoItem);
}
/**
* @return mixed
*/
public function getRecpAccount()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param string 交易商品的卖方商户账号。电商平台自营商户应填写自营商户的收款账户;非自营电商应填写非自营商户的收款账户
*/
public function setRecpAccount(): void
{
$this->mSet(__FUNCTION__, (string)func_get_arg(0));
}
/**
* @return mixed
*/
public function getRecpCode()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param string 应填写收款企业代码(境内企业为统一社会信用代码;境外企业可不填写)
*/
public function setRecpCode(): void
{
$this->mSet(__FUNCTION__, (string)func_get_arg(0));
}
/**
* @return mixed
*/
public function getRecpName()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param string 应填写收款企业名称
*/
public function setRecpName(): void
{
$this->mSet(__FUNCTION__, (string)func_get_arg(0));
}
}