![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/extmag/shiplab/Model/ |
<?php /** * Copyright © Extmag. All rights reserved. */ namespace Extmag\Shiplab\Model; use Extmag\Shiplab\Api\Data\PickupInterface; use Magento\Framework\Model\AbstractModel; class Pickup extends AbstractModel implements PickupInterface { /** * @inheritDoc */ protected function _construct() { parent::_construct(); $this->_init(ResourceModel\Pickup::class); } /** * @inheritDoc */ public function getId() { return parent::getData(self::ENTITY_ID); } /** * @inheritDoc */ public function getCreatedTime() { return parent::getData(self::CREATED_TIME); } /** * @inheritDoc */ public function getUpdateTime() { return parent::getData(self::UPDATED_TIME); } /** * @inheritDoc */ public function setId($value) { return $this->setData(self::ENTITY_ID, $value); } /** * @inheritDoc */ public function setCreatedTime($createdTime) { return $this->setData(self::CREATED_TIME, $createdTime); } /** * @inheritDoc */ public function setUpdateTime($updateTime) { return $this->setData(self::UPDATED_TIME, $updateTime); } /** * @inheritDoc */ public function setRequest($request) { return $this->setData(self::REQUEST, $request); } /** * @inheritDoc */ public function getLabelIds() { return $this->getData(self::LABEL_IDS); } /** * @inheritDoc */ public function getRequest() { return $this->getData(self::REQUEST); } /** * @inheritDoc */ public function getResponse() { return $this->getData(self::RESPONSE); } /** * @inheritDoc */ public function setLabelIds($labelIds) { return $this->setData(self::LABEL_IDS, $labelIds); } /** * @inheritDoc */ public function setResponse($response) { return $this->setData(self::RESPONSE, $response); } /** * @inheritDoc */ public function getCarrierCode() { return $this->getData(self::CARRIER_CODE); } /** * @inheritDoc */ public function setCarrierCode($carrierCode) { return $this->setData(self::CARRIER_CODE, $carrierCode); } /** * @inheritDoc */ public function getMasterId() { return parent::getData(self::MASTER_ID); } /** * @inheritDoc */ public function setMasterId($masterId) { return $this->setData(self::MASTER_ID, $masterId); } }