Order.php 719 字节
<?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);
    }


}