Order.php
719 字节
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
<?php
namespace Lackoxygen\GzCbec\Request\Report\Node;
use Lackoxygen\GzCbec\Utils\Collection;
class Order extends Collection
{
/**
* @return mixed
*/
public function getOrderHead()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param mixed $orderHead
*/
public function setOrderHead(): void
{
$this->mSet(__FUNCTION__, func_get_arg(0), false);
}
/**
* @return mixed
*/
public function getOrderList()
{
return $this->mGet(__FUNCTION__);
}
/**
* @param mixed $orderList
*/
public function pushOrderList(OrderList $orderList): void
{
$this->mPush(__FUNCTION__, $orderList);
}
}