BaseTransfer.php 1.5 KB
<?php


namespace Lackoxygen\GzCbec\Request\Report\Node;

use Lackoxygen\GzCbec\Utils\Collection;

class BaseTransfer extends Collection
{
    /**
     * @return mixed
     */
    public function getCopCode()
    {
        return $this->mGet(__FUNCTION__);
    }

    /**
     * @param mixed $copCode
     */
    public function setCopCode(): void
    {
        $this->mSet(__FUNCTION__, func_get_arg(0));
    }

    /**
     * @return mixed
     */
    public function getCopName()
    {
        return $this->mGet(__FUNCTION__);
    }

    /**
     * @param mixed $copName
     */
    public function setCopName(): void
    {
        $this->mSet(__FUNCTION__, func_get_arg(0));
    }

    /**
     * @return mixed
     */
    public function getDxpMode()
    {
        return $this->mGet(__FUNCTION__);
    }

    /**
     * @param mixed $dxpMode
     */
    public function setDxpMode($dxpMode): void
    {
        $this->mSet(__FUNCTION__, func_get_arg(0));
    }

    /**
     * @return mixed
     */
    public function getDxpId()
    {
        return $this->mGet(__FUNCTION__);
    }

    /**
     * @param mixed $dxpId
     */
    public function setDxpId($dxpId): void
    {
        $this->mSet(__FUNCTION__, func_get_arg(0));
    }

    /**
     * @return mixed
     */
    public function getNote()
    {
        return $this->mGet(__FUNCTION__);
    }

    /**
     * @param mixed $note
     */
    public function setNote(): void
    {
        $this->mSet(__FUNCTION__, func_get_arg(0));
    }


}