123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?php
- namespace StatsBundle\Traits;
- /**
- * Trait ClientTrait
- *
- * @package StatsBundle\Traits
- */
- trait ClientTrait
- {
- /**
- * @var integer
- *
- * @ORM\Column(type="integer", nullable=true)
- */
- protected $clientId;
-
- /**
- * @var string
- *
- * @ORM\Column(type="string", length=100, nullable=true)
- */
- protected $clientExternalId;
- /**
- * @var string
- *
- * @ORM\Column(type="string", length=100, nullable=true)
- */
- protected $clientName;
- /**
- * @var string
- *
- * @ORM\Column(type="string", length=100, nullable=true)
- */
- protected $clientAddress;
- /**
- * Set clientId
- *
- * @param integer $clientId
- *
- */
- public function setClientId($clientId)
- {
- $this->clientId = $clientId;
- return $this;
- }
- /**
- * Get clientId
- *
- * @return integer
- */
- public function getClientId()
- {
- return $this->clientId;
- }
- /**
- * Set clientExternalId
- *
- * @param string $clientExternalId
- *
- */
- public function setClientExternalId($clientExternalId)
- {
- $this->clientExternalId = $clientExternalId;
- return $this;
- }
- /**
- * Get clientExternalId
- *
- * @return string
- */
- public function getClientExternalId()
- {
- return $this->clientExternalId;
- }
- /**
- * Set clientName
- *
- * @param string $clientName
- *
- */
- public function setClientName($clientName)
- {
- $this->clientName = $clientName;
- return $this;
- }
- /**
- * Get clienName
- *
- * @return string
- */
- public function getClientName()
- {
- return $this->clientName;
- }
- /**
- * Set clientAddress
- *
- * @param string $clientAddress
- *
- */
- public function setClientAddress($clientAddress)
- {
- $this->clientAddress = $clientAddress;
- return $this;
- }
- /**
- * Get clientAddress
- *
- * @return string
- */
- public function getClientAddress()
- {
- return $this->clientAddress;
- }
- }
|